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!)
A336243 a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n,k)^2 * (n-k-1)! * a(k). 1
1, 1, 5, 56, 1114, 34624, 1549648, 94402356, 7511324448, 756406501200, 94039208461584, 14146468841290752, 2532586289913605088, 532113978869395649856, 129662518122880634567232, 36270261084908437106586624, 11543682123659880166705099776 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (n!)^2 * [x^n] 1 / (1 - Sum_{k>=1} x^k / (k*k!)).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k]^2 (n - k - 1)! a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 16}]
nmax = 16; CoefficientList[Series[1/(1 - Sum[x^k/(k k!), {k, 1, nmax}]), {x, 0, nmax}], x] Range[0, nmax]!^2
nmax = 16; Assuming[x > 0, CoefficientList[Series[1/(1 + EulerGamma - ExpIntegralEi[x] + Log[x]), {x, 0, nmax}], x]] Range[0, nmax]!^2
CROSSREFS
Sequence in context: A060080 A203522 A180874 * A356134 A363059 A163793
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 13 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 July 14 05:06 EDT 2024. Contains 374291 sequences. (Running on oeis4.)