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

A157803
a(n) = 8984250*n - 8464830.
3
519420, 9503670, 18487920, 27472170, 36456420, 45440670, 54424920, 63409170, 72393420, 81377670, 90361920, 99346170, 108330420, 117314670, 126298920, 135283170, 144267420, 153251670, 162235920, 171220170, 180204420, 189188670
OFFSET
1,1
COMMENTS
The identity (1482401250*n^2-2793393900*n+1315947601)^2-(27225*n^2-51302*n+24168)*(8984250*n-8464830)^2=1 can be written as A157804(n)^2-A157802(n)*a(n)^2=1.
FORMULA
From Harvey P. Dale, Nov 01 2011: (Start)
a(1) = 519420, a(2)=9503670; for n>2, a(n) = 2*a(n-1) - a(n-2).
G.f.: 330*x*(25651*x + 1574)/(x-1)^2. (End)
MATHEMATICA
8984250 Range[30] - 8464830 (* or *) LinearRecurrence[{2, -1}, {519420, 9503670}, 30] (* Harvey P. Dale, Nov 01 2011 *)
PROG
(Magma) I:=[519420, 9503670]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..40]];
(PARI) a(n) = 8984250*n - 8464830;
CROSSREFS
Sequence in context: A234173 A226287 A251834 * A236095 A186180 A186172
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 07 2009
STATUS
approved