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.

User: J.S. Seneschal

J.S. Seneschal's wiki page.

J.S. Seneschal has authored 1 sequences.

A373733 Triangular numbers with tetrahedral indices: a(n) = (1/72) * (n*(n+1)*(n+2)*(n+3)*(n^2+2)).

Original entry on oeis.org

0, 1, 10, 55, 210, 630, 1596, 3570, 7260, 13695, 24310, 41041, 66430, 103740, 157080, 231540, 333336, 469965, 650370, 885115, 1186570, 1569106, 2049300, 2646150, 3381300, 4279275, 5367726, 6677685, 8243830, 10104760, 12303280
Offset: 0

Author

J.S. Seneschal, Jun 17 2024

Keywords

Crossrefs

Programs

  • Mathematica
    PolygonalNumber[Binomial[Range[2, 50], 3]] (* Paolo Xausa, Jul 22 2024 *)
  • PARI
    a(n)=n*(n+1)*(n+2)*(n+3)*(n^2+2)/72 \\ Charles R Greathouse IV, Jul 10 2024
    
  • Python
    from math import comb
    def A373733(n): return comb(comb(n+2,3)+1,2) # Chai Wah Wu, Jul 10 2024

Formula

a(n) = A000217(A000292(n)).
a(n) = A000292(n) + A054563(n).