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.

A105824 a(n) = sigma(n) mod 4.

Original entry on oeis.org

1, 3, 0, 3, 2, 0, 0, 3, 1, 2, 0, 0, 2, 0, 0, 3, 2, 3, 0, 2, 0, 0, 0, 0, 3, 2, 0, 0, 2, 0, 0, 3, 0, 2, 0, 3, 2, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 3, 2, 2, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 2, 0, 0, 2, 0
Offset: 1

Views

Author

Shyam Sunder Gupta, May 05 2005

Keywords

Crossrefs

Sequences sigma(n) mod k: A053866 (k=2), A074941 (k=3), A105824 (k=4), A105825 (k=5), A084301 (k=6), A105826 (k=7), A105827 (k=8).

Programs

  • Maple
    A105824:= n-> (numtheory[sigma](n) mod 4):
    seq (A105824(n), n=1..105); # Jani Melik, Jan 26 2011
  • Mathematica
    Table[Mod[DivisorSigma[1, n], 4], {n, 100}] (* Wesley Ivan Hurt, Nov 07 2017 *)
  • PARI
    a(n)=sigma(n)%4

Formula

a(n) = A010873(A000203(n)). - Antti Karttunen, Nov 07 2017