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”).

A274360
Numbers n such that n and n+1 both have 18 divisors.
2
6075, 23275, 25856, 26900, 33524, 45324, 46475, 61299, 61347, 77076, 82075, 93924, 96236, 107775, 111924, 117324, 118700, 133524, 137924, 155771, 209524, 210176, 219275, 229275, 230643, 234099, 257724, 258475, 272924, 275300, 278271, 312987, 325899, 332667, 348524
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
PROG
(PARI) is(n)=numdiv(n)==18 && numdiv(n+1)==18
(PARI) list(lim)=my(v=List()); forprime(p=2, sqrtint(lim\12), forprime(q=2, sqrtint(lim\p^2\2), if(p==q, next); my(pq2=(p*q)^2); forprime(r=2, lim\pq2, if(p==r || q==r, next); t=pq2*r; if(numdiv(t-1)==18, listput(v, t-1)); if(numdiv(t+1)==18, listput(v, t))))); Set(v)
CROSSREFS
Intersection of A005237 and A030636.
Sequence in context: A241245 A260105 A084804 * A025515 A031576 A204966
KEYWORD
nonn
AUTHOR
STATUS
approved