A204767 Quadruples (a,b,c,d) of the form ( n*(n^3-1), n^3-1, 2*n^3+1, n*(n^3+2) ).
0, 0, 3, 3, 14, 7, 17, 20, 78, 26, 55, 87, 252, 63, 129, 264, 620, 124, 251, 635, 1290, 215, 433, 1308, 2394, 342, 687, 2415, 4088, 511, 1025, 4112, 6552, 728, 1459, 6579, 9990, 999, 2001, 10020, 14630, 1330, 2663, 14663, 20724, 1727, 3457, 20760, 28548, 2196, 4395, 28587
Offset: 1
References
- G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, Oxford University Press, 2008 (Sixth edition), Par. 13.7.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
&cat[[n*(n^3-1), n^3-1, 2*n^3+1, n*(n^3+2)]: n in [1..40]];
-
Mathematica
Flatten[Table[{n^4 - n, n^3 - 1, 2 n^3 + 1, n^4 + 2 n}, {n, 1, 40}]] (* Vincenzo Librandi, Jan 02 2014 *)
Comments