OFFSET
1,1
COMMENTS
For the first of the corresponding eleven consecutive positive integers, see A262019.
LINKS
Colin Barker, Table of n, a(n) for n = 1..444
Index entries for linear recurrences with constant coefficients, signature (179,-179,1).
FORMULA
a(n) = 179*a(n-1)-179*a(n-2)+a(n-3) for n>3.
G.f.: -4*x*(7*x^2+74*x+7) / ((x-1)*(x^2-178*x+1)).
EXAMPLE
28 is in the sequence because 28^2 + ... + 32^2 = 4510 = 15^2 + ... + 25^2.
MATHEMATICA
LinearRecurrence[{179, -179, 1}, {28, 5308, 945148}, 30] (* Harvey P. Dale, May 16 2019 *)
PROG
(PARI) Vec(-4*x*(7*x^2+74*x+7)/((x-1)*(x^2-178*x+1)) + O(x^20))
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Sep 08 2015
STATUS
approved