login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A348266 k-digit numbers whose digit(s) are the number of distinct prime factors in each of the preceding k integers. 2
22, 313, 2232, 2323, 2333, 32215, 432152, 2434332, 4222423, 43332543, 332325334, 2535332433, 4532543535234, 5435433351423 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(12) <= 2535332433. - David A. Corneth, Oct 10 2021
a(12) >= 10^9. - Michel Marcus, Oct 11 2021
LINKS
EXAMPLE
22 is a term because omega(20) = 2 and omega(21) = 2, whose concatenation is 22.
313 is a term because preceding it omega(310) = 3, omega(311) = 1 and omega(312) = 3, and their concatenation is 313.
32215 is term because, the number of distinct prime divisors of 32210, 32211, 32212, 32213 and 32214 are 3, 2, 2, 1, 5 and their ordered concatenation gives the next number 32215.
MATHEMATICA
Select[Range[33000], FromDigits[PrimeNu /@ (# - Range[IntegerLength[#], 1, -1])] == # &] (* Amiram Eldar, Oct 09 2021 *)
PROG
(PARI) isok(m) = {my(s="", k=m, i=1); while(1, s = concat(s, Str(omega(k))); if (eval(s) == m+i, return (i)); if (eval(s) > m+i, return(0)); k++; i++; ); }
lista(nn) = my(nb); for(n=1, nn, if (nb=isok(n), print1(n+nb, ", "))); \\ Michel Marcus, Oct 09 2021
CROSSREFS
Cf. A323083.
Sequence in context: A028054 A100789 A028038 * A025992 A028034 A028231
KEYWORD
nonn,base,more
AUTHOR
Metin Sariyar, Oct 09 2021
EXTENSIONS
a(8)-a(9) from Amiram Eldar, Oct 09 2021
a(10)-a(11) from Michel Marcus, Oct 10 2021
a(12) confirmed by Martin Ehrenstein, Oct 28 2021
a(13)-a(14) from Martin Ehrenstein, Oct 30 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 10 14:55 EDT 2024. Contains 375790 sequences. (Running on oeis4.)