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.

A134794 Concatenation of next n composite numbers.

Original entry on oeis.org

4, 68, 91012, 14151618, 2021222425, 262728303233, 34353638394042, 4445464849505152, 545556575860626364, 65666869707274757677, 7880818284858687889091
Offset: 1

Views

Author

Omar E. Pol, Nov 26 2007

Keywords

Crossrefs

Cf. A053067, A133013. Composite numbers: A002808.

Programs

  • Mathematica
    cc[x_]:=FromDigits[Flatten[IntegerDigits/@x]]; Module[{nn= 100,cmps,tr,len},cmps = Select[Range[nn],CompositeQ];len=Length[cmps];tr = Floor[ (Sqrt[1+8 len]-1)/2];cc/@TakeList[cmps,Range[tr]]] (* Harvey P. Dale, Sep 26 2021 *)