OFFSET
0,3
COMMENTS
Supersequence of A187605 (primes of the form n^n + n - 1).
Numbers n such that a(n) = prime: 2, 3, 19, 30, 535, 1551, ..., another term > 2300 (see A058912 and A187605).
Also generalization of the problem: "What is the minimum length of a text consisting only of the first n letters of the alphabet and containing all possible n-tuples (no blanks)?" (see Puzzleup link). Example for n = 3, length of text a(3) = 29: AAABAACABBABCACBACCBBBCBCCCAA, all triples (AAA, AAB, ..., CCC) occurring exactly once. - Jörg Zurkirchen, Sep 06 2014
LINKS
Jaroslav Krizek, Table of n, a(n) for n = 0..50
FORMULA
E.g.f.: 1/(1 + LambertW(-x)) + (x-1)*exp(x). - Alois P. Heinz, Jun 15 2018
MAPLE
MATHEMATICA
Join[{0}, Table[n^n + n - 1, {n, 18}]]
PROG
(PARI) a(n)=n^n+n-1 \\ Edward Jiang, Sep 06 2014
(Magma) [n^n+n-1 : n in [0..20]]; // Wesley Ivan Hurt, Sep 23 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Nov 12 2013
STATUS
approved