A100252 Least square n-gonal number greater than 1, or 0 if none exists.
36, 4, 9801, 1225, 81, 225, 9, 0, 196, 64, 36, 441, 3025, 16, 17689, 100, 484, 0, 2601, 729, 68121, 225, 25, 7225, 25921, 81, 1225, 203401, 441, 1089, 4761, 196, 15376, 36, 1936, 511225, 784, 576, 55071241, 47089, 1156, 256, 529046001, 2916, 1134225
Offset: 3
Keywords
Examples
a(3)=9801 since 1 + 4 + 7 +...+ (1+80*3)= 99^2 = 9801 and no other arithmetic series with initial term 1, difference 3 and fewer terms sums to a perfect square.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 3..100
- Eric W. Weisstein, MathWorld: Polygonal Number
- Eric W. Weisstein, MathWorld: Square Number
Programs
-
Mathematica
NgonIndex[n_, v_] := (-4 + n + Sqrt[16 - 8*n + n^2 - 16*v + 8*n*v])/(n - 2)/2; Table[k = 2; While[sqr = k^2; i = NgonIndex[n, sqr]; k < 25000 && ! IntegerQ[i], k++]; If[k == 25000, k = sqr = i = 0]; sqr, {n, 3, 64}] (* T. D. Noe, Apr 19 2011 *)
Comments