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.

A225758 Runs of consecutive numbers with the same number and sum of divisors.

Original entry on oeis.org

14, 15, 1334, 1335, 1634, 1635, 2685, 2686, 33998, 33999, 42818, 42819, 64665, 64666, 84134, 84135, 109214, 109215, 122073, 122074, 166934, 166935, 289454, 289455, 383594, 383595, 440013, 440014, 544334, 544335, 605985, 605986, 649154, 649155, 655005, 655006
Offset: 1

Views

Author

Jean-François Alcover, May 15 2013

Keywords

Comments

No triple found up to 10^9.

Examples

			Sequence begins:
14, 15;
1334, 1335;
1634, 1635;
2685, 2686;
33998, 33999;
etc.
		

Crossrefs

Cf. A225756 (same number of divisors), A225757 (same sum of divisors).
Cf. A054004 (first term of every run).

Programs

  • Mathematica
    sel = Select[Range[1000000], DivisorSigma[0, #] == DivisorSigma[0, #+1] && DivisorSigma[1, #] == DivisorSigma[1, #+1] &]; Union[sel, sel+1]