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!)
A355425 Expansion of e.g.f. 1/(1 - Sum_{k=1..2} (exp(k*x) - 1)/k). 1
1, 2, 11, 89, 959, 12917, 208781, 3937019, 84846899, 2057107337, 55416031601, 1642126375199, 53084324076839, 1859037341680157, 70112365228588421, 2833115932639555379, 122113252334984094779, 5592296493425013663377, 271169701559687033317241 (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-1)) * binomial(n,k) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-sum(k=1, 2, (exp(k*x)-1)/k))))
(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-1))*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Column k=2 of A355427.
Cf. A004700.
Sequence in context: A215623 A099662 A307770 * A099693 A197794 A197914
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)