A155499 a(n) = n + (n+1)^(n+2).
1, 9, 83, 1027, 15629, 279941, 5764807, 134217735, 3486784409, 100000000009, 3138428376731, 106993205379083, 3937376385699301, 155568095557812237, 6568408355712890639, 295147905179352825871
Offset: 0
Keywords
Examples
If n=2, a(2)=2+3^4=83.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
Programs
-
Mathematica
Table[n +(n+1)^(n+2),{n,20}] (* or *) #[[1]]+#[[2]]^#[[3]]&/@ Partition[ Range[20],3,1] (* Harvey P. Dale, Mar 14 2012 *)
-
PARI
a(n) = n+(n+1)^(n+2); \\ Michel Marcus, Feb 20 2016
Extensions
Added the first term 1 by Vincenzo Librandi, Mar 15 2012
Comments