[go: up one dir, main page]

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!)
A355421 Expansion of e.g.f. exp(Sum_{k=1..3} (exp(k*x) - 1)). 1
1, 6, 50, 504, 5870, 76872, 1111646, 17522664, 298133054, 5433157512, 105396184478, 2165189912040, 46901678992958, 1067332196912136, 25435754924426270, 633014456504059368, 16411191933603611198, 442258823578968351624 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (1 + 2^k + 3^k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, 3, exp(k*x)-1))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (1+2^j+3^j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Column k=3 of A355423.
Sequence in context: A365189 A303562 A125558 * A005416 A300989 A105617
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 01 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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)