login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A369724
Expansion of e.g.f. exp( (5/2) * (1-sqrt(1-4*x)) ).
2
1, 5, 35, 335, 4225, 67525, 1321075, 30751775, 832573025, 25745985125, 896177819875, 34698406783375, 1479737530398625, 68935386567921125, 3483762766656021875, 189846574063623209375, 11098195364856546690625, 692834276972696475053125
OFFSET
0,2
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} 5^(n-k) * (n-1+k)! / (k! * (n-1-k)!).
a(n) = 2*(2*n-3)*a(n-1) + 25*a(n-2).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(5/2*(1-sqrt(1-4*x)))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 30 2024
STATUS
approved