The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A241419 Number of numbers m <= n that have a prime divisor greater than sqrt(n) (i.e., A006530(m)>sqrt(n)). 3
0, 1, 2, 1, 2, 3, 4, 4, 2, 3, 4, 4, 5, 6, 7, 7, 8, 8, 9, 10, 11, 12, 13, 13, 9, 10, 10, 11, 12, 12, 13, 13, 14, 15, 16, 16, 17, 18, 19, 19, 20, 21, 22, 23, 23, 24, 25, 25, 19, 19, 20, 21, 22, 22, 23, 23, 24, 25, 26, 26, 27, 28, 28, 28, 29, 30, 31, 32, 33, 33, 34, 34, 35, 36, 36, 37, 38 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Values of n that are squares of primes p^2 seem to reduce the value of a(p^2) from the value a(p^2 - 1). Example, a(24) = 13, a(25) = 9; a(120) = 70, a(121) = 60.
a(p^2) = a(p^2-1) - p + 1 if p is prime. If n is not the square of a prime, a(n) >= a(n-1).- Robert Israel, Aug 11 2014
LINKS
E. Naslund, The Average Largest Prime Factor, Integers, Vol. 13 (2013), A81. See "2. The Main Theorem."
FORMULA
a(n) = Sum_{prime p > sqrt(n)} floor(n/p). - Max Alekseyev, Nov 14 2017
EXAMPLE
a(12) = 4, because there are four values of m = {5, 7, 10, 11} that have prime divisors that exceed sqrt(12) = 3.464... These prime divisors are {5, 7, 5, 11} respectively.
MAPLE
N:= 1000: # to get a(1) to a(N)
MF:= map(m -> max(numtheory:-factorset(m))^2, <($1..N)>): MF[1]:= 0:
seq(nops(select(m -> MF[m]>n, [$1..n])), n=1..N); # Robert Israel, Aug 11 2014
MATHEMATICA
a241419[n_Integer] :=
Module[{f},
f = Reap[For[m = 1, m <= n, m++,
If[Max[First[Transpose[FactorInteger[m]]]] > Sqrt[n], Sow[m],
False]]];
If[Length[f[[2]]] == 0, Length[f[[2]]], Length[f[[2, 1]]]]]; a241419[120]
PROG
(PARI) isok(i, n) = {my(f = factor(i)); my(sqrn = sqrt(n)); for (k=1, #f~, if ((p=f[k, 1]) && (p>sqrn) , return (1)); ); }
a(n) = sum(i=1, n, isok(i, n)); \\ Michel Marcus, Aug 11 2014
(PARI) A241419(n) = my(r=0); forprime(p=sqrtint(n)+1, n, r+=n\p); r; \\ Max Alekseyev, Nov 14 2017
CROSSREFS
Sequence in context: A240855 A084612 A295164 * A203108 A230989 A321392
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Aug 08 2014
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 May 14 04:15 EDT 2024. Contains 372528 sequences. (Running on oeis4.)