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!)
A336608 Sum_{n>=0} a(n) * x^n / (n!)^2 = exp(-x) / BesselJ(0,2*sqrt(x)). 1
1, 0, 1, 4, 51, 856, 21435, 725796, 32132499, 1800176176, 124511280723, 10420458131260, 1037868062069113, 121317006426807192, 16446390218708245393, 2559445829942874207804, 453188354421968867989395, 90587738500599611033753184 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A000275(k) / k!.
MATHEMATICA
nmax = 17; CoefficientList[Series[Exp[-x]/BesselJ[0, 2 Sqrt[x]], {x, 0, nmax}], x] Range[0, nmax]!^2
A000275[0] = 1; A000275[n_] := A000275[n] = -Sum[(-1)^(n - k) Binomial[n, k]^2 A000275[k], {k, 0, n - 1}]; a[n_] := n! Sum[(-1)^(n - k) Binomial[n, k] A000275[k]/k!, {k, 0, n}]; Table[a[n], {n, 0, 17}]
CROSSREFS
Sequence in context: A347921 A328931 A343572 * A349653 A235325 A230401
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 27 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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)