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.

A121556 Numbers such that sigma(n)^2 is divisible by UnitarySigma(n)*UnitaryPhi(n).

Original entry on oeis.org

1, 2, 3, 6, 14, 15, 30, 35, 42, 70, 78, 105, 190, 210, 348, 357, 418, 570, 714, 910, 1045, 1144, 1254, 2090, 2296, 2730, 3135, 3432, 4060, 4522, 4674, 5278, 6270, 6888, 10168, 10659, 10824, 12180, 12441, 13566, 14630, 15834, 16770, 17160
Offset: 1

Views

Author

Yasutoshi Kohmoto, Sep 12 2006

Keywords

Crossrefs

Programs

  • Maple
    for n from 1 to 20000 do if numtheory[sigma](n)^2 mod (A047994(n)*A034448(n)) = 0 then printf("%d,",n) ; end if;end do:
  • Mathematica
    f[p_, e_] := (p^(e+1)-1)^2/(p-1)^2/(p^(2*e)-1); seqQ[1] = True; seqQ[n_] := IntegerQ [Times @@ (f @@@ FactorInteger[n])]; Select[Range[17160], seqQ] (* Amiram Eldar, Dec 11 2019 *)