OFFSET
1,1
COMMENTS
For the first of the corresponding eleven consecutive positive integers, see A261974.
From Zak Seidov, Sep 07 2015: (Start)
Positive values x of solutions (x, y) to the Diophantine equation 380 + 110x + 11x^2 - 6y - 3y^2 = 0, with values of y in A261974.
Note that there are also solutions with negative x: (x,y) = (-77,137), (-3317, 6341), (-152285, 291593), (-7001573, 13406981), ... with values of y in A261974. (End)
LINKS
Colin Barker, Table of n, a(n) for n = 1..601
Index entries for linear recurrences with constant coefficients, signature (47,-47,1).
FORMULA
a(n) = 47*a(n-1)-47*a(n-2)+a(n-3) for n>3.
G.f.: -x*(5*x^2-98*x+137) / ((x-1)*(x^2-46*x+1)).
a(n) = -1+3*(23+4*sqrt(33))^(-n)+3*(23+4*sqrt(33))^n. - Colin Barker, Mar 03 2016
EXAMPLE
137 is in the sequence because 137^2 + 138^2 + 139^2 = 57134 = 67^2 + ... + 77^2.
MATHEMATICA
LinearRecurrence[{47, -47, 1}, {137, 6341, 291593}, 20] (* Vincenzo Librandi, Sep 08 2015 *)
PROG
(PARI) Vec(-x*(5*x^2-98*x+137) / ((x-1)*(x^2-46*x+1)) + O(x^40))
(Magma) I:=[137, 6341, 291593]; [n le 3 select I[n] else 47*Self(n-1)-47*Self(n-2)+Self(n-3): n in [1..15]]; // Vincenzo Librandi, Sep 08 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Sep 07 2015
STATUS
approved