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.

A267008 Expansion of Product_{k>=1} (1 + (k+1)*x^k).

Original entry on oeis.org

1, 2, 3, 10, 13, 28, 58, 90, 146, 260, 481, 688, 1168, 1748, 2863, 4726, 6938, 10412, 16140, 23746, 35702, 55812, 79032, 116758, 168779, 247006, 350310, 513410, 744286, 1045466, 1485685, 2098780, 2935416, 4137878, 5746618, 8027612, 11343706, 15487222, 21418682
Offset: 0

Views

Author

Vaclav Kotesovec, Jan 08 2016

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(i*(i+1)/2 b(n$2):
    seq(a(n), n=0..42);  # Alois P. Heinz, Aug 15 2019
  • Mathematica
    nmax = 50; CoefficientList[Series[Product[1+(k+1)*x^k, {k, 1, nmax}], {x, 0, nmax}], x]
    nmax = 50; poly = ConstantArray[0, nmax+1]; poly[[1]] = 1; poly[[2]] = 2; Do[Do[poly[[j+1]] += (k+1)*poly[[j-k+1]], {j, nmax, k, -1}];, {k, 2, nmax}]; poly