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!)
A346371 Sum_{n>=0} a(n) * x^n / (n!)^2 = exp( Sum_{n>=0} x^(2*n+1) / (2*n+1)^2 ). 0
1, 1, 2, 10, 88, 1496, 34256, 1305872, 57804160, 3960382848, 288097804032, 31177032137472, 3374496463248384, 530644850402565120, 79955455534325999616, 17241179374803330287616, 3448609425518084068048896, 977269122457749276877750272, 250420488297020919542581493760 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = (1/n) * Sum_{k=0..floor((n-1)/2)} (binomial(n,2*k+1) * (2*k+1)!)^2 * a(n-2*k-1) / (2*k+1).
MATHEMATICA
nmax = 18; CoefficientList[Series[Exp[Sum[x^(2 k + 1)/(2 k + 1)^2, {k, 0, Infinity}]], {x, 0, nmax}], x] Range[0, nmax]!^2
a[0] = 1; a[n_] := a[n] = (1/n) Sum[(Binomial[n, 2 k + 1] (2 k + 1)!)^2 a[n - 2 k - 1]/(2 k + 1), {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 18}]
CROSSREFS
Sequence in context: A060350 A270923 A096658 * A186184 A326554 A055779
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 14 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 March 28 07:33 EDT 2024. Contains 371235 sequences. (Running on oeis4.)