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!)
A355412 Count of numbers <= 10^n with no prime factor greater than n. 0
0, 6, 39, 66, 312, 506, 2154, 3426, 5193, 7574, 30523, 44695, 173076, 254064, 364384, 511984, 1945204, 2749999, 10159602, 14427308, 20186025, 27861174, 101837745, 141340074, 193902061, 263152094, 353549941, 470539446, 1730528206, 2319027316 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) counts the numbers s <= 10^n whose prime factorization s = p1^q1 * p2^q2 * ... * pk^qk (where p1 < p2 < ... < pk) has pk <= n.
LINKS
EXAMPLE
For n=2, a(n)=6, because there are 6 numbers not greater than 10^2 whose prime divisors are not greater than 2: {2,4,8,16,32,64}.
MATHEMATICA
f[n0_, M0_] :=
Module[{M = M0, n = n0, k, p},
If[n == 1 || M <= 1, 0,
If[n == 2, Floor[Log[n, M]], p = NextPrime[n + 1, {-1, -2}];
k = Floor[Log[p[[1]], M]];
k + Sum[f[p[[2]], M/p[[1]]^i], {i, 0, k}]]]];
Table[{n, f[n, 10^n]}, {n, 20}]
(* Xianwen Wang, Jul 16 2022 *)
PROG
(Python)
from sympy import prevprime
def intlog(n, base):
ans=0
while n>=base:
n//=base
ans+=1
return (ans)
def count(n, s):
if n==1:
return 0
if n==2:
return intlog(s, n)
else:
p=prevprime(n+1)
p2=prevprime(p)
k=intlog(s, p)
for i in range(k+1):
k+=count(p2, s//(p**i))
return(k)
for n in range(1, 21):
print([n, count(n, 10**n)])
(PARI) a(n) = sum(k=2, 10^n, my(f=factor(k)[, 1]); vecmax(f) <= n); \\ Michel Marcus, Jul 14 2022
CROSSREFS
Sequence in context: A061423 A080298 A253803 * A058897 A058985 A116951
KEYWORD
nonn
AUTHOR
Zhining Yang, Jul 01 2022
EXTENSIONS
Edited by Peter Munn, May 26 2023
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 April 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)