login
Positive integers whose square is the sum of 74 consecutive squares.
3

%I #9 Sep 08 2022 08:46:12

%S 2257,2849,21941,27713,604765,763865,16669573,21054961,162316669,

%T 205018517,4474051285,5651073085,123321498797,155764598629,

%U 1200818695321,1516726961053,33099030801665,41806637918965,912332431430633,1152346479602381,8883656545668089

%N Positive integers whose square is the sum of 74 consecutive squares.

%C Positive integers x in the solutions to 2*x^2-148*y^2-10804*y-264698 = 0.

%H Colin Barker, <a href="/A257825/b257825.txt">Table of n, a(n) for n = 1..1000</a>

%H <a href="/index/Rec#order_12">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,0,0,0,7398,0,0,0,0,0,-1).

%F a(n) = 7398*a(n-6)-a(n-12).

%F G.f.: -37*x*(5*x^11+5*x^10+61*x^9+77*x^8+593*x^7+749*x^6-20645*x^5-16345*x^4-749*x^3-593*x^2-77*x-61) / ((x^6-86*x^3-1)*(x^6+86*x^3-1)).

%e 2257 is in the sequence because 2257^2 = 5094049 = 225^2+226^2+...+298^2.

%t LinearRecurrence[{0, 0, 0, 0, 0, 7398, 0, 0, 0, 0, 0, -1}, {2257, 2849, 21941, 27713, 604765, 763865, 16669573, 21054961, 162316669, 205018517, 4474051285, 5651073085}, 40] (* _Vincenzo Librandi_, May 11 2015 *)

%o (PARI) Vec(-37*x*(5*x^11+5*x^10+61*x^9+77*x^8+593*x^7+749*x^6-20645*x^5-16345*x^4-749*x^3-593*x^2-77*x-61) / ((x^6-86*x^3-1)*(x^6+86*x^3-1)) + O(x^100))

%o (Magma) I:=[2257,2849,21941,27713,604765,763865,16669573, 21054961,162316669,205018517,4474051285,5651073085]; [n le 12 select I[n] else 7398*Self(n-6)-Self(n-12): n in [1..40]]; // _Vincenzo Librandi_, May 11 2015

%Y Cf. A001653, A180274, A218395, A257761, A257765, A257767, A257780, A257781, A257823, A257824, A257826-A257828.

%K nonn,easy

%O 1,1

%A _Colin Barker_, May 10 2015