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.

A323330 Larger of amicable pair m < n defined by t(n) = m and t(m) = n where t(n) = psi(n) - n and psi(n) = A001615(n) is the Dedekind psi function.

Original entry on oeis.org

1550, 3100, 4790, 6200, 7750, 9580, 12400, 12922, 15500, 15290, 19160, 20330, 23950, 24800, 25844, 31000, 30580, 38320, 38750, 40660, 47900, 49600, 51688, 62000, 61160, 76640, 77500, 82150, 81320, 76450, 95800, 90454, 99200, 103376, 101650, 119750, 124000, 122320
Offset: 1

Views

Author

Amiram Eldar, Jan 11 2019

Keywords

Comments

The terms are ordered according to the order of their lesser counterparts (A323329).

Crossrefs

Cf. A001615, A002046, A033845 (Dedekind psi perfect numbers), A323327, A323328, A323329.

Programs

  • Mathematica
    psi[n_] := n*Times@@(1+1/Transpose[FactorInteger[n]][[1]]); t[n_]:= psi[n] - n; s={}; Do[n=t[m]; If[n>m && t[n]==m, AppendTo[s,n]], {m, 1, 120000}]; s