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!)
A367972 Expansion of e.g.f. exp(exp(2*x) - 1)/(1 - x). 2
1, 3, 14, 82, 568, 4504, 40016, 392368, 4198784, 48616320, 604921600, 8043848960, 113785080832, 1705669278720, 27007064393728, 450422751508480, 7893590619881472, 145052304752934912, 2789743827826573312, 56063169473909817344 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} ((k-1)! + 2^k) * binomial(n-1,k-1) * a(n-k).
a(n) = n! * Sum_{k=0..n} 2^k * Bell(k)/k!, where Bell() is A000110.
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, ((j-1)!+2^j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A333956 A194091 A186737 * A020104 A220894 A103467
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 06 2023
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 4 07:24 EDT 2024. Contains 375679 sequences. (Running on oeis4.)