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.

A239634 Initial digits of semiprimes in decimal representation.

Original entry on oeis.org

4, 6, 9, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
Offset: 1

Views

Author

Reinhard Zumkeller, Mar 23 2014

Keywords

Comments

a(n) = A000030(A001358(n)).

Crossrefs

Cf. A239639 (run lengths), A106146 (last digits).

Programs

  • Haskell
    a239634 = a000030 . a001358
  • Mathematica
    First[IntegerDigits[#]]&/@Select[Range[300],PrimeOmega[#]==2&] (* Harvey P. Dale, Jul 24 2017 *)