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.

A173319 a(n) = 5*n! + 1.

Original entry on oeis.org

6, 6, 11, 31, 121, 601, 3601, 25201, 201601, 1814401, 18144001, 199584001, 2395008001, 31135104001, 435891456001, 6538371840001, 104613949440001, 1778437140480001, 32011868528640001, 608225502044160001, 12164510040883200001, 255454710858547200001
Offset: 0

Views

Author

Vincenzo Librandi, Feb 16 2010

Keywords

Crossrefs

Cf. sequences of the type k*n!+1: A038507 (k=1), A052898 (k=2), A173324 (k=3), A173322 (k=4), this sequence, A173314 (k=6).

Programs

Formula

a(0)=6; for n>0, a(n) = n*a(n-1)-n+1. - Vincenzo Librandi, Sep 28 2013
(n-2)*a(n) - (n^2-n-1)*a(n-1) + (n-1)^2*a(n-2) = 0. [Bruno Berselli, Sep 28 2013]