login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A138748 a(n) = (n+(n+1)) + (n*(n+1)) + (n^(n+1)). 1
1, 6, 19, 100, 1053, 15666, 279991, 5764872, 134217817, 3486784510, 100000000131, 3138428376876, 106993205379253, 3937376385699498, 155568095557812463, 6568408355712890896, 295147905179352826161, 14063084452067724991350 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Sum of three arithmetic operations (sum, product, powers) of two consecutive integers.
LINKS
FORMULA
a(n) = A028387(n) + A007778(n). - R. J. Mathar, Apr 03 2008
EXAMPLE
a(0) = (0+1) + (0*1) + (0^1) = 1;
a(1) = (1+2) + (1*2) + (1^2) = 6;
a(2) = (2+3) + (2*3) + (2^3) = 19; etc.
MAPLE
A028387 := proc(n) n+(n+1)^2 ; end: A007778 := proc(n) n^(n+1) ; end: A138748 := proc(n) A028387(n)+A007778(n) ; end: seq(A138748(n), n=0..20) ; # R. J. Mathar, Apr 03 2008
CROSSREFS
Sequence in context: A355539 A323686 A285853 * A097899 A223505 A054236
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Apr 03 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 26 23:00 EDT 2024. Contains 374636 sequences. (Running on oeis4.)