OFFSET
0,2
COMMENTS
A068704(11) (presently unknown) is either 0, if every term here is composite, or the index of the first prime in the sequence.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..42
FORMULA
a(n) is the concatenation of 11^n, 11^(n-1), ..., 121, 11, 1.
MAPLE
a:= proc(n) option remember;
`if`(n=0, 1, parse(cat(11^n, a(n-1))))
end:
seq(a(n), n=0..10); # Alois P. Heinz, May 24 2014
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 23 2014
STATUS
approved