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-3 of 3 results.

A045614 Maximal elements of pairs of "Super Unitary Amicable Numbers", sorted by their minimal elements.

Original entry on oeis.org

35, 155, 142, 224, 272, 601, 1033, 956, 1847, 2512, 3004, 2407, 2224, 3055, 3357, 4288, 5637, 4511, 7536, 5824, 6460, 7756, 8637, 7619, 8721, 7965, 14044, 14974, 16992, 13503, 14656, 14508, 14108, 18261, 22576, 17542, 16251, 20638, 18108, 29960, 27328, 24736
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; u[n_] := usigma[usigma[n]] - n; s = {}; Do[m = u[n]; If[m > n && u[m] == n, AppendTo[s, m]], {n, 1, 10000}]; s (* Amiram Eldar, Feb 18 2019 *)

Formula

usigma(usigma(a)) = usigma(usigma(b)) = a+b where aA034448(n) is the sum of the unitary divisors of n. This sequence gives the values of b; A045613 gives the values of a.

Extensions

Edited by Dean Hickerson, Nov 06 2006
Offset corrected by Donovan Johnson, Jul 26 2012
More terms from Amiram Eldar, Feb 18 2019

A324255 Lesser of super amicable pair m < n defined by sigma(sigma(m)) = sigma(sigma(n)) = m + n.

Original entry on oeis.org

23, 14999, 34673, 55373, 2056961, 2458187, 4586987, 5174363, 6204767, 15788453, 20699927, 22239647, 25748273, 43428947, 53636627, 74005637, 92626307, 132253139, 134131379, 158486747, 167677187, 183614987, 307412933, 385042487, 413859143, 418168343, 683772017
Offset: 1

Author

Amiram Eldar, Feb 19 2019

Keywords

Comments

The larger numbers in each pair are in A324256.
Analogous to A002025 as A019279 is analogous to A000396.

Examples

			(23, 37) are the first pair since sigma(sigma(23)) = sigma(sigma(37)) = 60 = 23 + 37.
		

Crossrefs

Cf. A000203, A000396, A002025, A019279, A045613 (unitary analog), A051027, A324256.

Programs

  • Mathematica
    seq={}; s[n_]:=DivisorSigma[1,DivisorSigma[1,n]]-n; Do[m=s[n];If[m>n && s[m]==n, AppendTo[seq, n]], {n,1,60000}]; seq
  • PARI
    f(n) = sigma(sigma(n)) - n;
    lista(nn) = {for (n=1, nn, my(fn = f(n)); if ((fn > n) && (f(fn) == n), print1(n, ", ")););} \\ Michel Marcus, Feb 20 2019

A126163 Number of super unitary amicable pairs (i,j) with i

Original entry on oeis.org

0, 1, 8, 27, 102, 375, 1134, 3589, 11942, 40410
Offset: 1

Author

Ant King, Dec 20 2006

Keywords

Examples

			a(6)=375 because there are 375 super unitary (m,n) pairs with m<n and for which m<=10^6
		

Crossrefs

Programs

  • Mathematica
    UnitaryDivisors[n_Integer?Positive] := Select[Divisors[n], GCD[ #, n/# ] == 1 \ &];
    UnitaryDivisorSum[n_Integer?Positive] := Plus @@ UnitaryDivisors[n];
    f[ k_] := Nest[UnitaryDivisorSum, k, 2] - k;
    g[ k_] := Nest[UnitaryDivisorSum, f[k], 2] - f[k];
    m = 10^7;
    data1 = Select[Range[m], g[ # ] == # &];
    data2 = Nest[UnitaryDivisorSum, #, 2] - # & /@ data1;
    data3 = Table[{data1[[k]], data2[[k]]}, {k, 1, Length[data1]}];
    data4 = DeleteCases[Table[If[Nest[UnitaryDivisorSum, First[data3[[k]]], 2] == Nest[UnitaryDivisorSum, Last[data3[[k]]], 2] \ && ! First[data3[[k]]] >= Last[data3[[k]]], data3[[k]], 0], {k, 1, Length[data3]}], 0];
    data5 = Table[Length[Select[data4, First[ # ] < 10^k \ &]], {k, 1, 7}]

Formula

Integer pairs (m,n) with m

Extensions

a(8)-a(10) from Amiram Eldar, Feb 18 2019
Showing 1-3 of 3 results.