A061048 Denominator of 1/49 - 1/n^2.
1, 3136, 3969, 4900, 5929, 7056, 8281, 196, 11025, 12544, 14161, 15876, 17689, 19600, 441, 23716, 25921, 28224, 30625, 33124, 35721, 784, 41209, 44100, 47089, 50176, 53361, 56644, 1225, 63504, 67081, 70756, 74529, 78400, 82369
Offset: 7
Links
- G. C. Greubel, Table of n, a(n) for n = 7..1000
Programs
-
Mathematica
Table[Denominator[1/7^2 - 1/n^2], {n, 7, 50}] (* G. C. Greubel, Jul 07 2017 *)
-
PARI
for(n=7,50, print1(denominator(1/7^2 - 1/n^2), ", ")) \\ G. C. Greubel, Jul 07 2017