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!)
A329256 Expansion of e.g.f. exp(Sum_{k>=1} x^(k^2) / (k^2)!). 4
1, 1, 1, 1, 2, 6, 16, 36, 106, 443, 1796, 6161, 23816, 122266, 643644, 2934296, 14002237, 83835433, 532282819, 3005258539, 17039094646, 115611682810, 848428608644, 5682350940168, 37297365940462, 281594230420802, 2323660209441962, 17929392395804072 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A010052(k) * a(n-k).
MATHEMATICA
nmax = 27; CoefficientList[Series[Exp[Sum[x^(k^2)/(k^2)!, {k, 1, Floor[nmax^(1/2)] + 1}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] Boole[IntegerQ[k^(1/2)]] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 27}]
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, sqrtint(N), x^k^2/(k^2)!)))) \\ Seiichi Manyama, Apr 29 2022
(PARI) a(n) = if(n==0, 1, sum(k=1, sqrtint(n), binomial(n-1, k^2-1)*a(n-k^2))); \\ Seiichi Manyama, Apr 29 2022
CROSSREFS
Sequence in context: A331393 A026540 A351932 * A128232 A362352 A099099
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 09 2019
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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)