Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A339014 E.g.f.: exp(2 * (exp(x) - 1 - x - x^2 / 2)). 6
1, 0, 0, 2, 2, 2, 42, 142, 366, 3082, 18626, 86990, 596158, 4485626, 30214498, 224897662, 1871664190, 15587540042, 134045407458, 1231183979886, 11725017784574, 114812031304986, 1170100796863202, 12371771640238174, 134796972965052350, 1514854948728869354 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = 2 * Sum_{k=3..n} binomial(n-1,k-1) * a(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * A006505(k) * A006505(n-k).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[2 (Exp[x] - 1 - x - x^2/2)], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = 2 Sum[Binomial[n - 1, k - 1] a[n - k], {k, 3, n}]; Table[a[n], {n, 0, 25}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp(2 * (exp(x) - 1 - x - x^2/2)))) \\ Michel Marcus, Nov 19 2020
CROSSREFS
Sequence in context: A318166 A241845 A254131 * A175910 A257662 A075042
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 19 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 August 18 13:06 EDT 2024. Contains 375269 sequences. (Running on oeis4.)