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”).

A089933
Concatenate the first n odd primes.
8
3, 35, 357, 35711, 3571113, 357111317, 35711131719, 3571113171923, 357111317192329, 35711131719232931, 3571113171923293137, 357111317192329313741, 35711131719232931374143, 3571113171923293137414347, 357111317192329313741434753, 35711131719232931374143475359
OFFSET
1,1
COMMENTS
Except for a(1) = 3, these numbers are not prime for n < 10000. See A089948.
LINKS
MAPLE
a[1]:= 3;
for n from 2 to 100 do
p:= ithprime(n+1);
a[n]:= 10^(1+ilog10(p))*a[n-1]+p
od:
seq(a[i], i=1..100); # Robert Israel, Aug 25 2016
MATHEMATICA
Table[FromDigits[Flatten[IntegerDigits[Prime[Range[n] + 1]]]], {n, 20}] (* Vincenzo Librandi, Nov 30 2015 *)
PROG
(PARI) concatprime(n) = { y=""; forprime(x=3, n, y=concat(Str(y), Str(x)); z=eval(y); print1(z", ") ) }
(Magma) [Seqint(Reverse(&cat[Reverse(Intseq(NthPrime(k+1))): k in [1..n]])): n in [1..17]]; // Vincenzo Librandi, Nov 30 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Cino Hilliard, Jan 11 2004
EXTENSIONS
Offset changed by Robert Israel, Aug 25 2016
STATUS
approved