A181968 a(n) = 54n^3 - 1.
53, 431, 1457, 3455, 6749, 11663, 18521, 27647, 39365, 53999, 71873, 93311, 118637, 148175, 182249, 221183, 265301, 314927, 370385, 431999, 500093, 574991, 657017, 746495, 843749, 949103, 1062881, 1185407, 1317005, 1457999, 1608713, 1769471, 1940597, 2122415
Offset: 1
References
- Wacław Sierpiński, Czym sie zajmuje teoria liczb. Warsaw: PW "Wiedza Powszechna", 1957, pp. 59-60.
Links
- Arkadiusz Wesolowski, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
Programs
-
Magma
[ 54*n^3-1 : n in [1..34]];
-
Maple
seq(54*n^3-1, n=1..34);
-
Mathematica
Table[54*n^3 - 1, {n, 34}]
-
PARI
vector(34, n, 54*n^3-1)
Comments