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!)
A346372 a(0) = 1; a(n) = n * a(n-1) + (1/n) * Sum_{k=3..n} (binomial(n,k) * k!)^2 * a(n-k) / k. 0
1, 1, 2, 10, 124, 2396, 64856, 2452472, 124483360, 8146185504, 668645524032, 67374446014272, 8183368905811584, 1179807474740449920, 199266648878034317568, 38984601149045449948416, 8748103140554862876727296, 2232274640259371687436982272, 642805438643602793466093711360 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Sum_{n>=0} a(n) * x^n / (n!)^2 = exp( polylog(2,x) - x^2 / 4 ).
Sum_{n>=0} a(n) * x^n / (n!)^2 = exp( x + Sum_{n>=3} x^n / n^2 ).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = n a[n - 1] + (1/n) Sum[(Binomial[n, k] k!)^2 a[n - k]/k, {k, 3, n}]; Table[a[n], {n, 0, 18}]
nmax = 18; CoefficientList[Series[Exp[PolyLog[2, x] - x^2/4], {x, 0, nmax}], x] Range[0, nmax]!^2
CROSSREFS
Sequence in context: A339934 A348876 A092645 * A333455 A334555 A202950
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 April 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)