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.

A121062 Partition numbers mod 4.

Original entry on oeis.org

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

Views

Author

Jonathan Vos Post, Aug 10 2006

Keywords

Comments

P_n==0: 11, 15, 21, 26, 30, 55, 58, 59, 62, 66, 70, 74, 75, 78, 80, 84, 94, 96, 98, 100, ... A237278.
P_n==1: 0, 1, 4, 12, 13, 17, 18, 29, 32, 36, 37, 39, 43, 48, 49, 52, 61, 67, 69, 71, 73, ... A237279.
P_n==2: 2, 8, 9, 10, 19, 22, 25, 27, 28, 31, 34, 40, 42, 45, 46, 47, 50, 57, 64, 65, 79, ... A237280.
P_n==3: 3, 5, 6, 7, 14, 16, 20, 23, 24, 33, 35, 38, 41, 44, 51, 53, 54, 56, 60, 63, 68, ... A237281.

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
         (b(n, i-1)+b(n-i, min(n-i, i))) mod 4))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..104);  # Alois P. Heinz, Dec 20 2024
  • Mathematica
    f[n_] := Mod[PartitionsP@n, 4]; Table[f@n, {n, 0, 104}] (* Robert G. Wilson v *)
  • PARI
    a(n) = numbpart(n) % 4; \\ Michel Marcus, Jun 29 2016

Formula

a(n) = A000041(n) mod 4 = A010873(A000041(n)).
a(n) = A000025(n) mod 4. - John M. Campbell, Jun 29 2016

Extensions

More terms from Robert G. Wilson v, Aug 17 2006