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!)
A347665 E.g.f.: exp( exp(x) * (1 + x + x^2 / 2) - 1 ). 1
1, 2, 8, 39, 227, 1518, 11368, 93796, 842416, 8158942, 84581560, 932878169, 10891741957, 134043979644, 1732583270218, 23445954950207, 331260511278659, 4874617929283392, 74548457001207068, 1182551615010825076, 19423368875596930596, 329809489306236629874 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Exponential transform of A000124.
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A000124(k) * a(n-k).
MATHEMATICA
nmax = 21; CoefficientList[Series[Exp[Exp[x] (1 + x + x^2/2) - 1], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] (k (k + 1)/2 + 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A059275 A020047 A231496 * A068107 A308207 A307709
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 10 2021
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 July 16 23:11 EDT 2024. Contains 374360 sequences. (Running on oeis4.)