login
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.
1
1, 3, 2, 9, 8, 11, 28, 6, 26, 20
OFFSET
1,2
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
MATHEMATICA
Join[{1}, Table[i=1; While[PrimeOmega[FromDigits[Flatten[IntegerDigits[Range[i]]]]]!=n, i++]; i, {n, 2, 10}]] (* Jayanta Basu, May 30 2013 *)
CROSSREFS
KEYWORD
nonn,base,hard,more
AUTHOR
Patrick De Geest, Aug 15 1999
STATUS
approved