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

A048695
Generalized Pellian with second term equal to 8.
2
1, 8, 17, 42, 101, 244, 589, 1422, 3433, 8288, 20009, 48306, 116621, 281548, 679717, 1640982, 3961681, 9564344, 23090369, 55745082, 134580533, 324906148, 784392829, 1893691806, 4571776441, 11037244688
OFFSET
0,2
FORMULA
a(n) = 2*a(n-1) + a(n-2); a(0)=1, a(1)=8.
a(n) = ((7+sqrt(2))(1+sqrt(2))^n - (7-sqrt(2))(1-sqrt(2))^n)/2*sqrt(2).
G.f.: (1+6*x)/(1 - 2*x - x^2). - Philippe Deléham, Nov 03 2008
MAPLE
with(combinat): a:=n->6*fibonacci(n-1, 2)+fibonacci(n, 2): seq(a(n), n=1..26); # Zerinvary Lajos, Apr 04 2008
MATHEMATICA
a[n_]:=(MatrixPower[{{1, 2}, {1, 1}}, n].{{7}, {1}})[[2, 1]]; Table[a[n], {n, 0, 40}] (* Vladimir Joseph Stephan Orlovsky, Feb 20 2010 *)
LinearRecurrence[{2, 1}, {1, 8}, 30] (* Harvey P. Dale, May 01 2013 *)
CROSSREFS
KEYWORD
easy,nonn
STATUS
approved