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!)
A063484 Omega(n+1) = 2*Omega(n), where Omega(n) is the number of prime divisors of n (with repetition). 1
3, 5, 13, 15, 35, 37, 39, 55, 61, 63, 73, 87, 134, 155, 157, 183, 193, 203, 209, 219, 247, 249, 259, 277, 295, 305, 313, 314, 327, 329, 339, 341, 371, 397, 399, 413, 421, 457, 458, 471, 489, 515, 535, 539, 541, 545, 579, 583, 613, 635, 649, 661, 673, 685, 689 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Omega(949)=2, Omega(949+1)=2*2, so 949 is a member of the sequence.
PROG
(PARI) j=[]; for(n=1, 1000, if(bigomega(n+1)==2*bigomega(n), j=concat(j, n))); j
(PARI) { n=0; for (m=1, 10^9, if (bigomega(m + 1) == 2*bigomega(m), write("b063484.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 23 2009
CROSSREFS
Sequence in context: A086769 A018753 A073217 * A057920 A018329 A090545
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 28 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 May 7 15:53 EDT 2024. Contains 372310 sequences. (Running on oeis4.)