login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A336021 a(0) = ... = a(3) = 1; a(n) = Sum_{k=0..n-4} Stirling2(n-4,k) * a(k). 3
1, 1, 1, 1, 1, 1, 2, 5, 15, 52, 204, 902, 4532, 26196, 175320, 1351296, 11819348, 115309534, 1236465988, 14419850138, 181652022376, 2462053028798, 35834756184146, 559816444117400, 9389648056139010, 169166236946379128, 3273760080403458226, 67994123544008546820 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
Shifts left 4 places under Stirling transform.
LINKS
FORMULA
E.g.f. A(x) satisfies A(x) = 1 + x + x^2/2 + x^3/6 + Integral( Integral( Integral( Integral A(exp(x) - 1) dx) dx) dx) dx.
MAPLE
b:= proc(n, m) option remember; `if`(n=0,
a(m), m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> `if`(n<4, 1, b(n-4, 0)):
seq(a(n), n=0..27); # Alois P. Heinz, Aug 13 2021
MATHEMATICA
a[0] = a[1] = a[2] = a[3] = 1; a[n_] := a[n] = Sum[StirlingS2[n - 4, k] a[k], {k, 0, n - 4}]; Table[a[n], {n, 0, 27}]
nmax = 27; A[_] = 0; Do[A[x_] = 1 + x + x^2/2 + x^3/6 + Integrate[Integrate[Integrate[Integrate[A[Exp[x] - 1 + O[x]^(nmax + 1)], x], x], x], x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] Range[0, nmax]!
PROG
(PARI) lista(nn) = {my(va = vector(nn, k, 1)); for (n=5, nn, va[n] = sum(k=0, n-4, stirling(n-5, k, 2)*va[k+1]); ); va; } \\ Michel Marcus, Jul 06 2020
CROSSREFS
Sequence in context: A000110 A336022 A303924 * A186001 A134381 A107589
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 05 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 29 20:30 EDT 2024. Contains 372114 sequences. (Running on oeis4.)