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

A173156
Numbers n such that max(tau(n),tau(n+1),tau(n+2),tau(n+3))- min(tau(n),tau(n+1),tau(n+2),tau(n+3)) = 1.
1
2, 20164, 155236, 293761, 293762, 643204, 1435204, 1444802, 5216653, 6120676, 8421601, 8421602, 14047501, 15194404, 15984004, 17606413, 19114383, 22829284, 25786083, 25989602, 35259843, 35259844, 36264484, 41499364, 42876301, 44382241, 50523662, 50523663
OFFSET
1,1
LINKS
EXAMPLE
For n = 20164, max(tau(20164),tau(20165),tau(20166),tau(20167)) - min(tau(20164),tau(20165),tau(20166),tau(20167)) = max(9,8,8,8) - min(9,8,8,8) = 1.
MAPLE
with(numtheory):for n from 200000 to 1500000 do; if max(tau(n), tau(n+1), tau(n+2), tau(n+3))- min(tau(n), tau(n+1), tau(n+2), tau(n+3))= 1 then print(n); else fi ; od;
MATHEMATICA
Position[Partition[DivisorSigma[0, Range[5053*10^4]], 4, 1], _?(Max[#]-Min[#] == 1&)]// Flatten (* Harvey P. Dale, Jan 23 2023 *)
CROSSREFS
Sequence in context: A158344 A319383 A124364 * A214598 A346988 A339476
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 11 2010
EXTENSIONS
a(13)-a(28) from Giovanni Resta, Jun 12 2016
STATUS
approved