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.

A333954 Numbers k such that A330575(k) = A330575(k+1).

Original entry on oeis.org

14, 16101, 72926, 97101, 2872701, 7610324
Offset: 1

Views

Author

Amiram Eldar, Apr 11 2020

Keywords

Comments

a(7) > 6*10*8.

Examples

			14 is a term since A330575(14) = A330575(15) = 26.
		

Crossrefs

Cf. A330575.
Similar sequences: A002961, A064115, A064125, A293183, A306985.

Programs

  • Mathematica
    s[1] = 1; s[n_] := s[n] = n + DivisorSum[n, s[#] &, # < n &]; seq = {}; s1 = s[1]; Do[s2 = s[n]; If[s1 == s2, AppendTo[seq, n-1]]; s1 = s2, {n, 2, 10^5}]; seq