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!)
A074254 Composite numbers equal to the sum of the squarefree numbers from their smallest prime factor to their largest prime factor. 0
10, 21, 44, 3317, 200632, 1110101, 975558109 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The next term is greater than 4*10^9. - Robert Gerbicz, Jun 09 2007
LINKS
EXAMPLE
44 = 2^2*11 = 2+3+5+6+7+10+11.
PROG
(PARI) a=vector(10^5); a[1]=1; for(n=2, 10^5, a[n]=a[n-1]+n*abs(moebius(n))); forprime(p=2, 10^5, forprime(q=p+1, 10^5, n=a[q]-a[p-1]; if((n%q==0)&&(n%p==0), k=n/(p*q); u=factor(k); w=matsize(u); if((w[1]==0)||(u[1, 1]>=p)&&(u[w[1], 1]<=q), print(n))))) - Robert Gerbicz, Jun 09 2007
CROSSREFS
Sequence in context: A086225 A240994 A014007 * A122963 A067520 A219884
KEYWORD
nonn
AUTHOR
Jason Earls, Sep 20 2002
EXTENSIONS
3 more terms from Robert Gerbicz, Jun 09 2007
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 19 04:26 EDT 2024. Contains 371782 sequences. (Running on oeis4.)