[go: up one dir, main page]

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

A257826
Positive integers whose square is the sum of 88 consecutive squares.
4
2222, 2530, 39358, 55990, 872938, 994598, 15506810, 22059818, 343935350, 391869082, 6109643782, 8691512302, 135509654962, 154395423710, 2407184143298, 3424433787170, 53390460119678, 60831405072658, 948424442815630, 1349218220632678, 21035705777498170
OFFSET
1,1
COMMENTS
Positive integers x in the solutions to 2*x^2-176*y^2-15312*y-446600 = 0.
FORMULA
a(n) = 394*a(n-4)-a(n-8).
G.f.: -22*x*(11*x^7+11*x^6+101*x^5+115*x^4-2545*x^3-1789*x^2-115*x-101) / (x^8-394*x^4+1).
EXAMPLE
2222 is in the sequence because 2222^2 = 4937284 = 192^2+193^2+...+279^2.
MATHEMATICA
LinearRecurrence[{0, 0, 0, 394, 0, 0, 0, -1}, {2222, 2530, 39358, 55990, 872938, 994598, 15506810, 22059818}, 40] (* Vincenzo Librandi, May 11 2015 *)
PROG
(PARI) Vec(-22*x*(11*x^7+11*x^6+101*x^5+115*x^4-2545*x^3-1789*x^2-115*x-101) / (x^8-394*x^4+1) + O(x^100))
(Magma) I:=[2222, 2530, 39358, 55990, 872938, 994598, 15506810, 22059818]; [n le 8 select I[n] else 394*Self(n-4)-Self(n-8): n in [1..40]]; // Vincenzo Librandi, May 11 2015
KEYWORD
nonn,easy
AUTHOR
Colin Barker, May 10 2015
STATUS
approved