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.

A050676 Let b(n) = number of prime factors (with multiplicity) of concatenation of numbers from 1 to n; sequence gives smallest number m with b(m) = n.

Original entry on oeis.org

1, 3, 2, 9, 8, 11, 28, 6, 26, 20
Offset: 1

Views

Author

Patrick De Geest, Aug 15 1999

Keywords

Comments

a(11) <= 148, a(12) = 104, a(13) = 100, a(14) = 54, a(15) <= 184. - Michael S. Branicky, Dec 14 2022 using factorizations at the De Geest link

Crossrefs

Programs

  • Mathematica
    Join[{1},Table[i=1; While[PrimeOmega[FromDigits[Flatten[IntegerDigits[Range[i]]]]]!=n,i++]; i,{n,2,10}]] (* Jayanta Basu, May 30 2013 *)