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

A105426
a(0)=1, a(1)=5, a(n)=8*a(n-1)-a(n-2).
3
1, 5, 39, 307, 2417, 19029, 149815, 1179491, 9286113, 73109413, 575589191, 4531604115, 35677243729, 280886345717, 2211413522007, 17410421830339, 137071961120705, 1079165267135301, 8496250175961703, 66890836140558323
OFFSET
0,2
COMMENTS
15*a(n)^2-14 is a square for all n.
FORMULA
G.f.: (1-3x)/(1-8x+x^2). a(n)=2*A105045(2*n+1)-1. a(-n)=2*A105045(2*n)-1, if n>0.
MATHEMATICA
LinearRecurrence[{8, -1}, {1, 5}, 20] (* Harvey P. Dale, Feb 25 2016 *)
PROG
(PARI) a(n)=subst(19*poltchebi(n)-poltchebi(n-1), x, 4)/15
CROSSREFS
Cf. a(n) = A001090(n+1) - 3*A001090(n).
Sequence in context: A221357 A201442 A135849 * A356622 A273019 A244039
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Apr 10 2005
STATUS
approved