A172370 Mirrored triangle A120072 read by rows.
3, 5, 8, 7, 3, 15, 9, 16, 21, 24, 11, 5, 1, 2, 35, 13, 24, 33, 40, 45, 48, 15, 7, 39, 3, 55, 15, 63, 17, 32, 5, 56, 65, 8, 77, 80, 19, 9, 51, 4, 3, 21, 91, 6, 99, 21, 40, 57, 72, 85, 96, 105, 112, 117, 120, 23, 11, 7, 5, 95, 1, 119, 1, 5, 35, 143, 25, 48, 69, 88, 105, 120, 133, 144
Offset: 2
Examples
The table starts 3 5 8 7 3 15 9 16 21 24 11 5 1 2 35 13 24 33 40 45 48 15 7 39 3 55 15 63 17 32 5 56 65 8 77 80 19 9 51 4 3 21 91 6 99
Links
- G. C. Greubel, Rows n = 2..100 of triangle, flattened
Programs
-
Magma
[[Numerator(1/(n-k)^2 -1/n^2): k in [1..n-1]]: n in [2..20]]; // G. C. Greubel, Sep 20 2018
-
Mathematica
Table[Numerator[1/(n-k)^2 -1/n^2], {n, 2, 20}, {k, 1, n-1}]//Flatten (* G. C. Greubel, Sep 20 2018 *)
-
PARI
for(n=2,20, for(k=1,n-1, print1(numerator(1/(n-k)^2 -1/n^2), ", "))) \\ G. C. Greubel, Sep 20 2018
Formula
T(n,m) = numerator of 1/(n-m)^2 - 1/n^2, n >= 2, 1 <= m < n. - R. J. Mathar, Nov 23 2010
Extensions
Comment rewritten and offset set to 2 by R. J. Mathar, Nov 23 2010
Comments