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

A157854
1728000n - 384240.
3
1343760, 3071760, 4799760, 6527760, 8255760, 9983760, 11711760, 13439760, 15167760, 16895760, 18623760, 20351760, 22079760, 23807760, 25535760, 27263760, 28991760, 30719760, 32447760, 34175760, 35903760, 37631760
OFFSET
1,1
COMMENTS
The identity (103680000*n^2-46108800*n+5126401)^2-(3600*n^2-1601*n +178)*(1728000*n-384240)^2=1 can be written as A157855(n)^2-A157853(n)*a(n)^2=1.
FORMULA
a(n) = 2*a(n-1) -a(n-2).
G.f.: x*(1343760+384240*x)/(x-1)^2.
MATHEMATICA
LinearRecurrence[{2, -1}, {1343760, 3071760}, 40]
PROG
(Magma) I:=[1343760, 3071760]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..50]];
(PARI) a(n) = 1728000*n - 384240.
CROSSREFS
Sequence in context: A214291 A023047 A206254 * A234727 A067516 A184661
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 08 2009
STATUS
approved