[go: up one dir, main page]

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”).

A100236
Main diagonal of triangle A100235.
4
1, 4, 26, 139, 726, 3774, 19601, 101784, 528526, 2744419, 14250626, 73997554, 384238401, 1995189564, 10360186226, 53796120699, 279340789726, 1450500069334, 7531841136401, 39109705751344, 203080369893126
OFFSET
0,2
FORMULA
a(n) = 5*a(n-1) + a(n-2) + 5 for n>1, with a(0)=1, a(1)=4. G.f.: Sum_{n>=1} a(n)*x^n/n = log((1-x)/(1-5*x-x^2)).
PROG
(PARI) a(n)=if(n==0, 1, n*polcoeff(log((1-x)/(1-5*x-x^2)+x*O(x^n)), n))
CROSSREFS
Equals A087130(n) - 1.
Sequence in context: A359962 A316539 A197964 * A229278 A180226 A325587
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 30 2004
STATUS
approved