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!)
A346314 Sum_{n>=0} a(n) * x^n / (n!)^2 = Product_{n>=1} (1 - x^n / (n!)^2). 1
1, -1, -1, 8, 15, 124, -3340, -9311, -102641, -1880812, 150047424, 692058289, 8916106452, 167039809897, 7435628931289, -1381243302601067, -9407162843960561, -165954439670564988, -3103870029424074136, -123659189880256295879, -10671656695397289496160 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = -(1/n) * Sum_{k=1..n} (binomial(n,k) * k!)^2 * k * ( Sum_{d|k} 1 / (d * ((k/d)!)^(2*d)) ) * a(n-k).
MATHEMATICA
nmax = 20; CoefficientList[Series[Product[(1 - x^k/(k!)^2), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!^2
a[0] = 1; a[n_] := a[n] = -(1/n) Sum[(Binomial[n, k] k!)^2 k Sum[1/(d ((k/d)!)^(2 d)), {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A110294 A110459 A132374 * A361710 A234534 A067686
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 13 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 April 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)