login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A242645
a(n) = concatenation of decimal expansions of powers of 11 (in decreasing order).
3
1, 111, 121111, 1331121111, 146411331121111, 161051146411331121111, 1771561161051146411331121111, 194871711771561161051146411331121111, 214358881194871711771561161051146411331121111, 2357947691214358881194871711771561161051146411331121111
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
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
Sequence in context: A152775 A362118 A242646 * A262647 A262631 A259747
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 23 2014
STATUS
approved