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.

A092241 Triangle read by rows: row n gives coefficients of (1+x+x^2)^n mod n.

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 2, 0, 3, 0, 2, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 3, 2, 0, 0, 3, 0, 0, 2, 3, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 4, 0, 2, 0, 0, 0, 3, 0, 0, 0, 2, 0, 4, 0, 1, 1, 0, 0, 3, 0, 0, 6, 0, 0, 7, 0, 0, 6, 0, 0, 3, 0, 0, 1
Offset: 0

Views

Author

N. J. A. Sloane, Feb 20 2004

Keywords

Examples

			Triangle begins:
[0]
[0, 0, 0]
[1, 0, 1, 0, 1]
[1, 0, 0, 1, 0, 0, 1]
[1, 0, 2, 0, 3, 0, 2, 0, 1]
[1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]
[1, 0, 3, 2, 0, 0, 3, 0, 0, 2, 3, 0, 1]
		

Crossrefs

Cf. A053200.

Programs

  • Maple
    f := n -> seriestolist( series( expand( (1+x+x^2)^n ) mod n, x, 2*n+1));