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.

A383450 2nd diagonal (from right) in A104978.

Original entry on oeis.org

2, 21, 180, 1430, 10920, 81396, 596904, 4326300, 31081050, 221760825, 1573537680, 11114897976, 78215948720, 548652722520, 3838040704080, 26784871943928, 186537501038070, 1296717366119175, 8999440181955300, 62366467037593950, 431633967218324640, 2983755440056831440, 20603495011611002400, 142131208489591604400
Offset: 0

Views

Author

N. J. A. Sloane, May 02 2025

Keywords

Crossrefs

Cf. A104987.

Programs

  • Maple
    From Peter Luschny, May 04 2025: (Start)
    a := n -> (3*n + 4)!/(n!*2*(2 + 2*n + 1)!): seq(a(n), n = 0..23);
    gf := 2*hypergeom([5/3, 7/3], [5/2], (27*x)/4):
    ser := series(gf, x, 25): seq(coeff(ser, x, k), k = 0..23);  (End)

Formula

From Peter Luschny, May 04 2025: (Start)
a(n) = (3*n + 4)! / (2*n!*(3 + 2*n)!).
a(n) = [x^n] 2*hypergeom([5/3, 7/3], [5/2], (27*x)/4). (End)