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.

A386390 Numbers k such that k-1 | sigma+(k) where sigma+ is A107758.

Original entry on oeis.org

2, 6, 66, 225, 8646, 101025, 149497986, 20412000225
Offset: 1

Views

Author

Michel Marcus, Aug 20 2025

Keywords

Crossrefs

Programs

  • Mathematica
    a107758[n_]:=DivisorSum[n, DivisorSigma[1, #] &, CoprimeQ[n/#, #] &];Select[Range[2,10^6],Divisible[a107758[#],#-1]&] (* James C. McMahon, Aug 21 2025 *)
  • PARI
    isok(k) = if (k>1, !(sumdiv(k, d, if(gcd(k/d, d) == 1, sigma(d))) % (k-1)));

Extensions

a(8) from Vincenzo Librandi, Aug 21 2025