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.

A127228 a(n) = numerator of ((n + 4)! - (n - 4)!)/(n!).

Original entry on oeis.org

40319, 362879, 1814399, 6652799, 19958399, 51891839, 121080959, 259459199, 518918399, 980179199, 1764322559, 3047466239, 5079110399, 8204716799, 12893126399, 19769460479, 29654190719, 43609103999, 62990927999
Offset: 4

Views

Author

Artur Jasinski, Jan 09 2007

Keywords

Crossrefs

Programs

  • Maple
    f::= n -> (n+4)*(n+3)*(n+2)*(n+1)*n*(n-1)*(n-2)*(n-3)-1:
    map(f, [$4..30]); # Robert Israel, Nov 20 2023
  • Mathematica
    Table[Numerator[((n + 4)! - (n - 4)!)/(n!)], {n, 4, 30}]

Formula

a(n) = (n+4) * (n+3) * (n+2) * (n+1) * n * (n-1) * (n-2) * (n-3) - 1. - Robert Israel, Nov 20 2023