cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A134723 Concatenation of next n odd primes.

Original entry on oeis.org

3, 57, 111317, 19232931, 3741434753, 596167717379, 838997101103107109, 113127131137139149151157, 163167173179181191193197199, 211223227229233239241251257263, 269271277281283293307311313317331
Offset: 1

Views

Author

Omar E. Pol, Nov 10 2007

Keywords

Crossrefs

Programs

  • Mathematica
    Module[{nterms=12,max},max=(nterms(nterms+1))/2+1; FromDigits[ Flatten[ IntegerDigits/@#]]&/@ With[ {pr=Prime[Range[2,max]]},Table[Take[pr, {(n(n-1))/2+1,(n(n+1))/2}],{n,nterms}]]] (* Harvey P. Dale, Nov 25 2012 *)
    Module[{nn=20},FromDigits[Flatten[IntegerDigits/@#]]&/@TakeList[Prime[ Range[ 2,(nn(nn+1))/2+1]],Range[nn]]] (* Harvey P. Dale, Mar 27 2022 *)