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!)
A112999 Partial sums of A036740. 2
1, 5, 221, 331997, 24883531997, 139314094387531997, 82606411393217618227531997, 6984964247224120535022357995827531997, 109110688415578301444592123476429107940843827531997 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 331997
FORMULA
a(n) = Sum_{k=1..n} (k!)^k.
a(n) = Sum_{k=1..n} (A000142(k))^k.
a(n) = Sum_{k=1..n} A036740(k).
a(n) = Sum_{k=1..n} A002109(k) * A000178(k-1).
EXAMPLE
a(1) = (1!)^1 = 1^1 = 1.
a(2) = (1!)^1 + (2!)^2 = 1^1 + 2^2 = 1 + 4 = 5.
a(3) = (1!)^1 + (2!)^2 + (3!)^3 = 1^1 + 2^2 + 6^3 = 1 + 4 + 216 = 221.
MATHEMATICA
Table[Sum[Product[m^k, {m, 1, k}], {k, 1, n}], {n, 1, 10}] (* Vaclav Kotesovec, Nov 01 2014 *)
Accumulate[Table[(n!)^n, {n, 10}]] (* Harvey P. Dale, Dec 23 2019 *)
PROG
(PARI) a(n) = sum(k=1, n, k!^k); \\ Michel Marcus, Nov 30 2020
CROSSREFS
Sequence in context: A066462 A046193 A195633 * A337965 A225818 A185551
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jan 03 2006
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 15 15:11 EDT 2024. Contains 374333 sequences. (Running on oeis4.)