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.

A132934 Concatenation of first n nonprime numbers.

Original entry on oeis.org

1, 14, 146, 1468, 14689, 1468910, 146891012, 14689101214, 1468910121415, 146891012141516, 14689101214151618, 1468910121415161820, 146891012141516182021, 14689101214151618202122, 1468910121415161820212224, 146891012141516182021222425
Offset: 1

Views

Author

Omar E. Pol, Sep 12 2007

Keywords

Comments

a(360) has 1001 decimal digits. - Michael De Vlieger, Jan 03 2017

Crossrefs

Programs

  • Mathematica
    Table[FromDigits@ Flatten@ Map[IntegerDigits, Take[#, n]], {n, Length@ #}] &@ Select[Range@ 30, ! PrimeQ@ # &] (* Michael De Vlieger, Jan 03 2017 *)