A133013 Concatenation of next n primes.
2, 35, 71113, 17192329, 3137414347, 535961677173, 79838997101103107, 109113127131137139149151, 157163167173179181191193197, 199211223227229233239241251257, 263269271277281283293307311313317
Offset: 1
Links
- C. K. Caldwell, The Prime Pages.
- Omar E. Pol, Determinacion geometrica de los numeros primos y perfectos.
Programs
-
Mathematica
With[{nn=15},FromDigits[Flatten[IntegerDigits/@#]]&/@TakeList[Prime[ Range[ (nn(nn+1))/2]],Range[nn]]] (* Requires Mathematica version 11 or later *) (* Harvey P. Dale, Apr 26 2018 *)