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!)
A355106 E.g.f. A(x) satisfies: A(x) = 1 + 2 * x * A(-log(1-x)). 3
1, 2, 8, 60, 704, 11640, 254736, 7071512, 241414400, 9898632864, 478455967200, 26853032524912, 1728192188667072, 126200480666269984, 10363161616018802080, 949530356895864383280, 96418968027002031636480, 10785892383962319840160640 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2 * n * Sum_{k=0..n-1} |Stirling1(n-1,k)| * a(k).
a(n) = 2 * n * A355098(n-1) for n>0.
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=2*i*sum(j=0, i-1, abs(stirling(i-1, j, 1))*v[j+1])); v;
CROSSREFS
Cf. A355098.
Sequence in context: A001188 A355100 A303532 * A113145 A293379 A294331
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 19 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 September 2 00:30 EDT 2024. Contains 375600 sequences. (Running on oeis4.)