A084377 a(n) = n^3 + 7.
7, 8, 15, 34, 71, 132, 223, 350, 519, 736, 1007, 1338, 1735, 2204, 2751, 3382, 4103, 4920, 5839, 6866, 8007, 9268, 10655, 12174, 13831, 15632, 17583, 19690, 21959, 24396, 27007, 29798, 32775, 35944, 39311, 42882, 46663, 50660, 54879, 59326
Offset: 0
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).
Programs
-
Magma
[n^3+7: n in [0..50]]; // Vincenzo Librandi, Jun 10 2016
-
Mathematica
Table[n^3 + 7, {n, 0, 60}] (* Vladimir Joseph Stephan Orlovsky, Apr 15 2011 *)
-
PARI
a(n) = n^3 + 7;
Formula
G.f.: (7 - 20*x + 25*x^2 - 6*x^3)/(1 - x)^4. - Vincenzo Librandi, Jun 10 2016
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3. - Vincenzo Librandi, Jun 10 2016
Extensions
More terms from Franklin T. Adams-Watters, Aug 29 2006
Comments