[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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