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

A157825
1728000n - 1620240.
3
107760, 1835760, 3563760, 5291760, 7019760, 8747760, 10475760, 12203760, 13931760, 15659760, 17387760, 19115760, 20843760, 22571760, 24299760, 26027760, 27755760, 29483760, 31211760, 32939760, 34667760, 36395760
OFFSET
1,1
COMMENTS
The identity (103680000*n^2-194428800*n+91152001)^2-(3600*n^2-6751*n+3165)*(1728000*n-1620240)^2=1 can be written as A157826(n)^2-A157824(n)*a(n)^2=1.
FORMULA
a(n) = 2*a(n-1) -a(n-2).
G.f.: x*(107760+1620240*x)/(x-1)^2.
MATHEMATICA
LinearRecurrence[{2, -1}, {107760, 1835760}, 40]
1728000Range[50]-1620240 (* Harvey P. Dale, Mar 23 2011 *)
PROG
(Magma) I:=[107760, 1835760]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..50]];
(PARI) a(n) = 1728000*n - 1620240.
CROSSREFS
Sequence in context: A202404 A203882 A178284 * A205607 A205438 A102333
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 07 2009
STATUS
approved