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.

A046841 Numbers whose sum of divisors divides their sum of cubes of divisors.

Original entry on oeis.org

1, 2, 3, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 26, 27, 29, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 46, 47, 48, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85
Offset: 1

Views

Author

Keywords

Comments

A005117 (squarefree numbers) is a subsequence. - Ivan Neretin, Dec 20 2017

Examples

			2 is a term because 1 + 8 = 9 is divisible by 1 + 2 = 3.
208 is a term: The power sums of divisors for k = 0, 1, 2, 3 are as follows: 10, 434, 54970, 10288838, and sigma(1,208) = 434 divides sigma(3,208) = 10288838 = 434*23707.
		

Crossrefs

Programs

  • Maple
    with(numtheory):
    for n to 100 do
     if (type(sigma[3](n)/sigma[1](n), integer)) then print(n) end if;
    end do; # Peter Bala, Jan 12 2025
  • Mathematica
    Select[Range@ 85, Divisible[DivisorSigma[3, #], DivisorSigma[1, #]] &] (* Michael De Vlieger, Aug 01 2017 *)
  • PARI
    isA046841(n)=sigma(n,3)%sigma(n,1)==0 \\ Michael B. Porter, Apr 07 2010