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.

A344347 Numbers k such that sigma(k)^2 is divisible by k-1.

Original entry on oeis.org

2, 3, 5, 10, 33, 55, 82, 129, 136, 145, 261, 351, 385, 406, 442, 513, 649, 897, 1090, 2241, 4726, 5185, 8650, 13601, 17101, 17641, 18241, 26625, 26937, 29697, 29953, 32896, 34561, 35841, 38417, 44955, 46081, 46593, 51985, 63505, 65703, 66249, 84376, 93313, 97903
Offset: 1

Views

Author

Zdenek Cervenka, May 15 2021

Keywords

Examples

			For k=10, sigma(10)^2 / (10-1) = 18^2 / 9 = 324 / 9 = 36.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2, 10^5], Divisible[DivisorSigma[1, #]^2, # - 1] &] (* Amiram Eldar, May 15 2021 *)
  • PARI
    list(nn) = for(n=2, nn, if (sigma(n)^2 % (n-1) == 0, print1(n, ", ")))
    list(100000)