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!)
A064112 Numbers k such that sopf(k) = 2*sopf(k+1), where sopf(k) = A008472. 1
99, 155, 689, 1106, 1517, 1524, 3014, 3403, 3479, 5809, 6478, 6723, 8606, 9143, 9454, 9797, 10126, 11771, 12283, 12382, 13112, 13969, 14150, 17422, 19303, 22184, 24856, 27466, 28119, 28529, 35927, 36464, 37512, 41904, 44505, 45016, 45506 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..600 from Harry J. Smith)
EXAMPLE
sopf(689)=66, 2*sopf(690)=66.
PROG
(PARI) sopf(n, s, fac, i) = fac=factor(n); for(i=1, matsize(fac)[1], s=s+fac[i, 1]); return(s);
j=[]; for(n=1, 50000, if(sopf(n)==2*sopf(n+1), j=concat(j, n))); j
(PARI) sopf(n)= { local(f, s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]); return(s) }
{ n=0; sm=sopf(1); for (m=1, 10^9, sp=sopf(m + 1); if (sm==2*sp, write("b064112.txt", n++, " ", m); if (n==600, break)); sm=sp ) } \\ Harry J. Smith, Sep 07 2009
CROSSREFS
Cf. A008472 (sopf).
Sequence in context: A039446 A165603 A095420 * A325881 A185498 A126230
KEYWORD
nonn
AUTHOR
Jason Earls, Sep 08 2001
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 June 1 04:03 EDT 2024. Contains 373010 sequences. (Running on oeis4.)