cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A350800 Numbers k such that k and k+1 have the same number and sum of divisors but a different number of distinct prime factors.

Original entry on oeis.org

64665, 109214, 2305557, 4701537, 6444873, 10118654, 32225337, 33876117, 70282053, 105967784, 149205914, 187434621, 268890218, 279113505, 334925577, 357340922, 391392134, 424942604, 575712494, 610752933, 612863198, 641703842, 701792234, 743194142, 800679495
Offset: 1

Views

Author

Kevin P. Thompson, Jan 16 2022

Keywords

Comments

Subsequence of A054004. Most members of A054004 are not a part of this subsequence, so consecutive numbers with equal tau and sigma most often achieve this with an equal count of distinct prime factors.

Examples

			64665 is a term of this sequence since tau(64665) = tau(64666) = 8 and sigma(64665) = sigma(64666) = 2160, but omega(64665) = 4 and omega(64666) = 3.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^7], DivisorSigma[{0, 1}, #] ==  DivisorSigma[{0, 1}, # + 1] && PrimeNu[#] != PrimeNu[# + 1] &] (* Amiram Eldar, Jan 20 2022 *)