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.

A132937 Concatenation of first n odd isolated primes.

Original entry on oeis.org

23, 2337, 233747, 23374753, 2337475367, 233747536779, 23374753677983, 2337475367798389, 233747536779838997, 233747536779838997113, 233747536779838997113127, 233747536779838997113127131
Offset: 1

Views

Author

Omar E. Pol, Sep 05 2007

Keywords

Crossrefs

Isolated primes: A007510. Cf: A007908, A019518, A059996, A078795, A089933.

Programs

  • Mathematica
    With[{ips=Transpose[Select[Partition[Prime[Range[2,50]],3,1], Min[ Differences[#]]>2&]][[2]]},Table[FromDigits[Flatten[ IntegerDigits/@ Take[ips,n]]],{n,Length[ips]}]] (* Harvey P. Dale, Sep 17 2013 *)