login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A336665
a(n) = (n!)^2 * [x^n] 1 / BesselJ(0,2*sqrt(x))^n.
3
1, 1, 10, 255, 12196, 939155, 106161756, 16554165495, 3404986723720, 893137635015219, 290965846152033460, 115256679181251696803, 54552992572663333862400, 30406695393635479756804525, 19712738332895648545008815416, 14707436666152282009334357074335
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * d^n * n!^2 / sqrt(n), where d = 3.431031961004073074179854315227049823720211... and c = 0.31156343453490677011135864540173577785263... - Vaclav Kotesovec, May 04 2024
MATHEMATICA
Table[(n!)^2 SeriesCoefficient[1/BesselJ[0, 2 Sqrt[x]]^n, {x, 0, n}], {n, 0, 15}]
A287316[n_, k_] := A287316[n, k] = If[n == 0, 1, If[k < 1, 0, Sum[Binomial[n, j]^2 A287316[n - j, k - 1], {j, 0, n}]]]; b[n_, k_] := b[n, k] = If[n == 0, 1, Sum[(-1)^(j + 1) Binomial[n, j]^2 A287316[j, k] b[n - j, k], {j, 1, n}]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 15}]
CROSSREFS
Main diagonal of A340986.
Sequence in context: A100743 A251588 A126468 * A024293 A361559 A120268
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 29 2020
STATUS
approved