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, 3, 2, 9, 8, 11, 28, 6, 26, 20
Offset: 1
Links
- Patrick De Geest, Normal Smarandache Concatenated Numbers, Prime factors from 1 up to n
- Micha Fleuren, Factors and primes of Smarandache sequences.
- Micha Fleuren, Smarandache Factors and Reverse factors
- Carlos Rivera, Puzzle 8. Primes by Listing, The Prime Puzzles & Problems connection.
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 *)
Comments