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.

A054024 Sum of the divisors of n reduced modulo n.

This page as a plain text file.
%I A054024 #77 Oct 27 2023 22:00:46
%S A054024 0,1,1,3,1,0,1,7,4,8,1,4,1,10,9,15,1,3,1,2,11,14,1,12,6,16,13,0,1,12,
%T A054024 1,31,15,20,13,19,1,22,17,10,1,12,1,40,33,26,1,28,8,43,21,46,1,12,17,
%U A054024 8,23,32,1,48,1,34,41,63,19,12,1,58,27,4,1,51,1,40,49,64,19,12,1,26,40
%N A054024 Sum of the divisors of n reduced modulo n.
%C A054024 If a(n) = 0, then n is a multiply-perfect number (A007691). - _Alonso del Arte_, Mar 30 2014
%H A054024 Antti Karttunen, <a href="/A054024/b054024.txt">Table of n, a(n) for n = 1..65537</a> (first 1000 terms from T. D. Noe, terms 1001..20000 from Alois P. Heinz).
%H A054024 Walter Nissen, <a href="http://upforthecount.com/math/abundance.html">Abundancy : Some Resources</a>.
%F A054024 a(n) = sigma(n) mod n.
%F A054024 a(p) = 1 for p prime.
%e A054024 a(12) = 4 because sigma(12) = 28 and 28 == 4 (mod 12).
%e A054024 a(13) = 1 because 13 is prime.
%e A054024 a(14) = 10 because sigma(14) = 24 and 24 == 10 (mod 14).
%p A054024 with(numtheory): seq(sigma(i) mod i, i=1..100);
%t A054024 Table[Mod[DivisorSigma[1, n], n], {n, 80}] (* _Alonso del Arte_, Mar 30 2014 *)
%o A054024 (Haskell)
%o A054024 a054024 n = mod (a000203 n) n  -- _Reinhard Zumkeller_, Mar 23 2013
%o A054024 (PARI) a(n)=sigma(n)%n \\ _Charles R Greathouse IV_, Nov 04 2014
%Y A054024 Cf. A000203 (sigma), A005114 (untouchable numbers), A007691 (positions of 0's), A045768, A045769, A088834, A045770, A076496, A159907.
%K A054024 nonn,easy
%O A054024 1,4
%A A054024 _Asher Auel_, Jan 19 2000