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!)
A370456 a(0) = 1, a(n) = (1/2) * Sum_{j=1..n} (1-(-1)^j-(-2)^j) * binomial(n,j) * a(n-j) for n > 0. 2
1, 2, 6, 29, 192, 1577, 15516, 178229, 2339952, 34559057, 567117876, 10237161629, 201592448712, 4300618438937, 98803485774636, 2432074390036229, 63857242954421472, 1781444969999245217, 52620896463516221796, 1640684857196257578029, 53847865360369426418232 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of A370092.
LINKS
FORMULA
E.g.f.: 2*exp(2*x)/(1 + exp(x) + exp(2*x) - exp(3*x)).
PROG
(SageMath)
def a(m):
if m==0:
return 1
else:
return 1/2*sum([(1-(-2)^j-(-1)^j)*binomial(m, j)*a(m-j) for j in [1, .., m]])
list(a(m) for m in [0, .., 20])
(PARI) seq(n)={my(p=exp(x + O(x*x^n))); Vec(serlaplace(2*p^2/(1 + p + p^2 - p^3)))} \\ Andrew Howroyd, Feb 23 2024
CROSSREFS
Sequence in context: A370217 A020126 A124529 * A246385 A260578 A296792
KEYWORD
nonn
AUTHOR
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 May 4 11:01 EDT 2024. Contains 372240 sequences. (Running on oeis4.)