login
A242646
a(n) = concatenation of decimal expansions of powers of 11 (in increasing order).
2
1, 111, 111121, 1111211331, 111121133114641, 111121133114641161051, 1111211331146411610511771561, 111121133114641161051177156119487171, 111121133114641161051177156119487171214358881, 1111211331146411610511771561194871712143588812357947691, 111121133114641161051177156119487171214358881235794769125937424601
OFFSET
0,2
COMMENTS
a(2) = 111121 is the first prime in this sequence (compare A242645).
There are no further primes through a(100). - Harvey P. Dale, Sep 12 2014
LINKS
FORMULA
a(n) is the concatenation of 1, 11, 121, 11^3, ... 11^(n-1), 11^n.
MAPLE
a:= proc(n) option remember;
`if`(n=0, 1, parse(cat(a(n-1), 11^n)))
end:
seq(a(n), n=0..10); # Alois P. Heinz, May 24 2014
MATHEMATICA
Module[{nn=15, c}, c=IntegerDigits/@(11^Range[0, nn]); Table[FromDigits[ Flatten[ Take[c, n]]], {n, nn+1}]] (* Harvey P. Dale, Sep 12 2014 *)
CROSSREFS
Cf. A242645.
Sequence in context: A244845 A152775 A362118 * A242645 A262647 A262631
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 23 2014
STATUS
approved