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

A156844
279841n^2 - 394634n + 139128.
4
24335, 469224, 1473795, 3038048, 5161983, 7845600, 11088899, 14891880, 19254543, 24176888, 29658915, 35700624, 42302015, 49463088, 57183843, 65464280, 74304399, 83704200, 93663683, 104182848, 115261695, 126900224
OFFSET
1,1
COMMENTS
The identity (279841*n^2-394634*n+139128)^2-(529*n^2-746*n+263)*(12167*n-8579)^2=1 can be written as a(n)^2-A156842(n)*A156845(n)^2=1.
FORMULA
a(n) = 3*a(n-1) -3*a(n-2) +a(n-3).
G.f.: x*(-24335-396219*x-139128*x^2)/(x-1)^3.
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {24335, 469224, 1473795}, 40]
Table[279841n^2-394634n+139128, {n, 30}] (* Harvey P. Dale, Mar 02 2021 *)
PROG
(Magma) I:=[24335, 469224, 1473795]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..40]];
(PARI) a(n)=279841*n^2-394634*n+139128 \\ Charles R Greathouse IV, Dec 23 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Feb 17 2009
EXTENSIONS
Edited by Charles R Greathouse IV, Jul 25 2010
STATUS
approved