login
A145698
Numbers x such that (x+37)^3 - x^3 is a square.
0
111, 76516, 45155207, 26641506492, 15718443685951, 9273855133215476, 5471558810153455767, 3228210424135405697932, 1904638678681079208334991, 1123733592211412597511957636, 663000914766054751452846681127, 391169415978380091944582029918172, 230789292426329488192551944805051231
OFFSET
1,1
FORMULA
a(n+2) = 590*a(n+1) - a(n) + 10868.
From Elmo R. Oliveira, May 12 2026: (Start)
a(n) = 37*A145700(n).
a(n) = 591*a(n-1) - 591*a(n-2) + a(n-3). (End)
EXAMPLE
a(1)=111 because the first relation is (111+37)^3 - 111^3 = 1369^2.
MATHEMATICA
CoefficientList[Series[(37 (-3-295 x+4 x^2))/(-1+591 x-591 x^2+x^3), {x, 0, 10}], x] (* Harvey P. Dale, Feb 20 2011 *)
PROG
(PARI) Vec(37*x*(-4*x^2 + 295*x + 3)/(-x^3 + 591*x^2 - 591*x + 1)+O(x^99)) \\ Charles R Greathouse IV, May 28 2014
CROSSREFS
Cf. A145700.
Sequence in context: A015262 A201430 A262641 * A362920 A244845 A152775
KEYWORD
nonn,easy
AUTHOR
Richard Choulet, Oct 16 2008
EXTENSIONS
More terms from Elmo R. Oliveira, May 12 2026
STATUS
approved