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.

A144870 Shadow transform of C(n+8,9) = A000582(n+8).

Original entry on oeis.org

1, 1, 1, 1, 4, 1, 2, 1, 1, 5, 9, 1, 9, 3, 1, 2, 9, 1, 9, 6, 2, 12, 9, 1, 8, 13, 1, 4, 9, 6, 9, 2, 8, 16, 9, 1, 9, 13, 9, 7, 9, 3, 9, 18, 1, 13, 9, 2, 4, 12, 8, 14, 9, 1, 37, 4, 8, 13, 9, 8, 9, 16, 1, 2, 38, 11, 9, 20, 7, 16, 9, 1, 9, 12, 13, 14, 21, 16, 9, 12, 1, 13, 9, 6, 37, 12, 16, 20, 9, 8, 22, 17
Offset: 1

Views

Author

Alois P. Heinz, Sep 23 2008

Keywords

Crossrefs

9th column of A144871. Cf. A007318.

Programs

  • Maple
    shadow:= proc(p) proc(n) local j; add (`if` (modp(p(j), n)=0, 1,0), j=0..n-1) end end: f:= proc(k) proc(n) binomial (n+k-1,k) end end: a:= n-> shadow (f(9))(n): seq (a(n), n=1..100);