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.

A173317 a(n) = 5*n! - 1.

Original entry on oeis.org

4, 4, 9, 29, 119, 599, 3599, 25199, 201599, 1814399, 18143999, 199583999, 2395007999, 31135103999, 435891455999, 6538371839999, 104613949439999, 1778437140479999, 32011868528639999, 608225502044159999
Offset: 0

Views

Author

Vincenzo Librandi, Feb 16 2010

Keywords

Crossrefs

Cf. sequences of the type k*n!-1: A033312 (k=1), A020543 (k=2), A173323 (k=3), A173321 (k=4), this sequence, A173316 (k=6).

Programs

  • Magma
    [5*Factorial(n)-1: n in [0..25]]; // Vincenzo Librandi, Sep 30 2013
    
  • Magma
    [4] cat [n eq 1 select n+3 else n*Self(n-1)+n-1: n in [1..25] ]; // Vincenzo Librandi, Sep 30 2013
  • Mathematica
    Table[5 n! - 1, {n, 0, 25}] (* Vincenzo Librandi, Sep 30 2013 *)

Formula

a(n) = 5*A000142(n)-1.
a(0)=4, a(n) = n*a(n-1)+n-1. - Vincenzo Librandi, Sep 30 2013

Extensions

a(16) corrected from Vincenzo Librandi, Sep 30 2013