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.

A371422 Numbers whose aliquot-like sequence based on the largest aliquot divisor of the sum of divisors of n (A371418) terminates in a cycle of length 2.

Original entry on oeis.org

12, 14, 15, 23, 29, 42, 44, 48, 54, 56, 60, 62, 65, 66, 69, 70, 72, 75, 76, 77, 78, 83, 84, 85, 86, 87, 88, 90, 91, 92, 94, 95, 99, 102, 107, 108, 110, 111, 112, 114, 115, 117, 118, 119, 120, 123, 124, 125, 128, 129, 131, 132, 134, 135, 136, 137, 139, 140, 142
Offset: 1

Views

Author

Amiram Eldar, Mar 23 2024

Keywords

Comments

It is unknown whether 222 is a term of this sequence or not (see A371423).

Examples

			12 is a term because when we start with 12 and repeatedly apply the mapping x -> A371418(x), we get the sequence 12, 14, 12, 14, ...
76 is a term because when we start with 76 and repeatedly apply the mapping x -> A371418(x), we get the sequence 76, 70, 72, 65, 42, 48, 62, 48, 62, ...
		

Crossrefs

Similar sequences: A127655, A127660, A127665.

Programs

  • Mathematica
    r[n_] := n/FactorInteger[n][[1, 1]]; f[n_] := r[DivisorSigma[1, n]];
    q[n_] := Module[{m = NestWhileList[f, n, UnsameQ, All][[-1]], k}, k = f[m]; k != m && f[k] == m]; Select[Range[221], q]