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

A190267
Numbers n such that d(n-1) = d(n+1) = 6, where d(k) is the number of divisors of k (A000005).
2
19, 51, 243, 244, 424, 476, 604, 638, 723, 846, 926, 1683, 1774, 2008, 2524, 2526, 2528, 3124, 3176, 3178, 4204, 4476, 4526, 4924, 5824, 6726, 6812, 6963, 7300, 7443, 7676, 8426, 8958, 8974, 9458, 9926, 10052, 10083, 10468, 11674, 11710, 12428, 12483, 12592
OFFSET
1,1
LINKS
MAPLE
with(numtheory): A190267 := proc(n) option remember: local k: if(n=1)then return 19:else k:=procname(n-1)+1: do if(tau(k-1)=6 and tau(k+1)=6)then return k: fi: k:=k+1: od: fi: end: seq(A190267(n), n=1..44); # Nathaniel Johnston, May 06 2011
CROSSREFS
Sequence in context: A267572 A378179 A349554 * A373008 A066775 A118591
KEYWORD
nonn
AUTHOR
STATUS
approved