login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A062970 a(n) = 1 + sum_{j=1..n} j^j. 6
1, 2, 6, 33, 289, 3414, 50070, 873613, 17650829, 405071318, 10405071318, 295716741929, 9211817190185, 312086923782438, 11424093749340454, 449317984130199829, 18896062057839751445, 846136323944176515622 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

The usual convention in the OEIS is that 0^0 = 1. This sequence could therefore be defined as Sum_{j=0..n} j^j. See also A001923.

LINKS

T. D. Noe, Table of n, a(n) for n=0..100

FORMULA

a(n) = a(n-1)+A000312(n) = A001923(n)+1.

EXAMPLE

a(4) = 1+1^1+2^2+3^3+4^4 = 1+1+4+27+256 = 289.

MATHEMATICA

Table[Sum[Sum[Binomial[n, k] StirlingS2[n, k] k!, {k, 0, n}], {n, 0, m}], {m, 0, 20}] [From Geoffrey Critzer (critzer.geoffrey(AT)usd443.org), Mar 18 2009]

PROG

(PARI) { a=0; for (n=0, 100, write("b062970.txt", n, " ", a+=n^n) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 14 2009]

CROSSREFS

Sequence in context: A174432 A012874 A005161 * A088125 A064940 A105142

Adjacent sequences:  A062967 A062968 A062969 * A062971 A062972 A062973

KEYWORD

nonn

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Jul 23 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 15:20 EST 2012. Contains 205823 sequences.