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.

Showing 1-4 of 4 results.

A127652 Integers whose unitary aliquot sequences are longer than their ordinary aliquot sequences.

Original entry on oeis.org

25, 28, 36, 40, 50, 68, 70, 74, 94, 95, 98, 116, 119, 134, 142, 143, 154, 162, 170, 175, 182, 189, 190, 200, 220, 226, 242, 245, 262, 273
Offset: 1

Views

Author

Ant King, Jan 24 2007

Keywords

Comments

Here the length of an aliquot sequence is defined to be the length of the transient part of its trajectory + the length of its terminal cycle.

Examples

			a(5)=50 because the fifth integer whose unitary aliquot sequence is longer than its ordinary aliquot sequence is 50.
		

References

  • Riele, H. J. J. te; Unitary Aliquot Sequences. MR 139/72, Mathematisch Centrum, 1972, Amsterdam.
  • Riele, H. J. J. te; Further Results On Unitary Aliquot Sequences. NW 2/73, Mathematisch Centrum, 1973, Amsterdam.

Crossrefs

Programs

  • Mathematica
    UnitaryDivisors[n_Integer?Positive]:=Select[Divisors[n],GCD[ #,n/# ]==1&];sstar[n_]:=Plus@@UnitaryDivisors[n]-n;g[n_] := If[n > 0, sstar[n], 0];UnitaryTrajectory[n_] := Most[NestWhileList[g, n, UnsameQ, All]];s[n_]:=DivisorSigma[1,n]-n;h[n_] := If[n > 0, s[n], 0];OrdinaryTrajectory[n_] := Most[NestWhileList[h, n, UnsameQ, All]];Select[Range[275],Length[UnitaryTrajectory[ # ]]>Length[OrdinaryTrajectory[ # ]] &]

Formula

Sequence gives those values of n for which A097032(n)>A098007(n).

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]

A290143 Numbers n such that transient part of the unitary aliquot sequence for n sets a new record.

Original entry on oeis.org

1, 2, 10, 14, 22, 38, 70, 134, 138, 170, 190, 210, 318, 426, 1398, 4170, 6870, 8454, 19866, 22470, 36282, 38370, 70770, 84774, 98790, 132990, 474642, 705990, 961650
Offset: 1

Views

Author

Amiram Eldar, Jul 21 2017

Keywords

Comments

The unitary version of A098009.
The record values are in A290144.

Examples

			The unitary aliquot sequence of 134 is: 134, 70, 74, 40, 14, 10, 8, 1. Its length is 8 and it is longer than the unitary aliquot sequences of all the numbers below 134.
		

References

  • Richard K. Guy, "Unitary aliquot sequences", Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004. B8, pp. 97-99.
  • Richard K. Guy and Marvin C. Wunderlich, Computing Unitary Aliquot Sequences: A Preliminary Report, University of Calgary, Department of Mathematics and Statistics, 1979.
  • H. J. J. te Riele, Unitary Aliquot Sequences, MR 139/72, Mathematisch Centrum, 1972, Amsterdam.
  • H. J. J. te Riele, Further Results On Unitary Aliquot Sequences. NW 2/73, Mathematisch Centrum, 1973, Amsterdam.

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])];
    g[n_] := If[n > 0, usigma[n] - n, 0]; f[n_] := NestWhileList[g, n, UnsameQ, All]; a = -1; seq = {}; Do[b = Length[f[n]] - 1; If[b > a, a = b; AppendTo[seq, n]], {n, 10^6}] ; seq (* after Giovanni Resta at A034448 & Robert G. Wilson v at A098009 *)

A290144 Record lengths of transient part of the unitary aliquot sequences of the numbers in A290143.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 15, 43, 45, 67, 78, 205, 207, 1109, 1116, 1117, 1155, 1162, 1163, 1171, 1711, 1712, 1828, 1829
Offset: 1

Views

Author

Amiram Eldar, Jul 21 2017

Keywords

Examples

			The unitary aliquot sequence of 134 is: 134, 70, 74, 40, 14, 10, 8, 1. Its length is 8 and it is longer than the unitary aliquot sequences of all the numbers below 134.
		

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])];
    g[n_] := If[n > 0, usigma[n] - n, 0]; f[n_] := NestWhileList[g, n, UnsameQ, All]; a = 0; seq = {}; Do[b = Length[f[n]] - 2; If[b > a, a = b; AppendTo[seq, b]], {n, 10^6}]; seq (* after Giovanni Resta at A034448 & Robert G. Wilson v at A098009 *)
Showing 1-4 of 4 results.