OFFSET
0,1
COMMENTS
Suggested by Karl Vago's contributions to Dario Alpern's list of records.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..250
Dario A. Alpern, ECM Factorization applet records
Dario A. Alpern, Factorization using the Elliptic Curve Method
FORMULA
a(n) = n + A061250(n+3). - R. J. Mathar, Sep 04 2008
EXAMPLE
a(1) = 1+(1+1)*(1+2)^(1+3) = 1+2*3^4 = 163.
MAPLE
MATHEMATICA
Table[n + (n+1)*(n+2)^(n+3), {n, 0, 20}] (* Vincenzo Librandi, Mar 20 2014 *)
PROG
(Magma) [n+(n+1)*(n+2)^(n+3): n in [0..20]]; // Vincenzo Librandi, Dec 27 2010
(PARI) vector(21, n, (n-1) + n*(n+1)^(n+2)) \\ G. C. Greubel, Nov 09 2019
(Sage) [n + (n+1)*(n+2)^(n+3) for n in (0..20)] # G. C. Greubel, Nov 09 2019
(GAP) List([0..20], n-> n + (n+1)*(n+2)^(n+3)); # G. C. Greubel, Nov 09 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Reinhard Zumkeller, Sep 03 2008
STATUS
approved