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.

A135289 Row 10 of A038207.

Original entry on oeis.org

1024, 5120, 11520, 15360, 13440, 8064, 3360, 960, 180, 20, 1
Offset: 0

Views

Author

Zerinvary Lajos, Dec 03 2007

Keywords

Comments

Sequence lists number of vertices, edges, squares, cubes, 4-cubes, 5-cubes, 6-cubes, 7-cubes, 8-cubes, 9-cubes, 10-cubes contained in a 10-cube.

Programs

  • Maple
    for i from 10 to 10 do seq(binomial(i, j)*2^(i-j), j = 0 .. i-1) od;
  • PARI
    Vec((x+2)^10+O(x^11)) \\ Joerg Arndt, Apr 15 2013