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!)
A356914 E.g.f. satisfies: A(x) = 1/(1 - x * A(x)^2)^A(x). 2
1, 1, 8, 129, 3188, 106820, 4530174, 232744274, 14054237000, 975665799792, 76568358325440, 6703512043934112, 647772783078516600, 68484470168404178928, 7863452609057425825704, 974474039841523412062440, 129636661193226128284609344, 18427094124309886080021680640 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} (2*n+k+1)^(k-1) * |Stirling1(n,k)|.
MATHEMATICA
m = 18; (* number of terms *)
A[_] = 0;
Do[A[x_] = 1/(1 - x*A[x]^2)^A[x] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x]*Range[0, m-1]! (* Jean-François Alcover, Sep 12 2022 *)
PROG
(PARI) a(n) = sum(k=0, n, (2*n+k+1)^(k-1)*abs(stirling(n, k, 1)));
CROSSREFS
Sequence in context: A348546 A041112 A348207 * A364986 A338328 A073701
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 07 2022
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 March 28 22:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)