OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Cino Hilliard, Proof that a cube plus 7 cannot be a square
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
G.f.: (17 - 50*x + 55*x^2 - 16*x^3)/(1 - x)^4. - Vincenzo Librandi, Jun 11 2016
MATHEMATICA
Table[n^3 + 17, {n, 0, 60}] (* Vincenzo Librandi, Jun 11 2016 *)
LinearRecurrence[{4, -6, 4, -1}, {17, 18, 25, 44}, 40] (* Harvey P. Dale, Jul 03 2017 *)
PROG
(PARI) n3pm(n, m) = { for(x=1, n, y=x^3+m; print1(y", ")) }
(Magma) [n^3+17: n in [0..50]]; // Vincenzo Librandi, Jun 11 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Jun 23 2003
EXTENSIONS
a(0) = 17 by Vincenzo Librandi, Jun 11 2016
STATUS
approved