login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A121958 a(n) = a(n-2) + (n^2 - 3*n + 1)*a(n-1) with a(1)=0, a(2)=1, a(3)=1. 1
0, 1, 1, 6, 67, 1279, 37158, 1524757, 83898793, 5958339060, 530376075133, 57816950528557, 7574550895316100, 1174113205724524057, 212522064787034170417, 44418285653695866141210 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = a(n-2) + (n^2 - 3*n + 1)*a(n-1) with a(1)=0, a(2)=1, a(3)=1. - Robert Israel, Dec 18 2018
MAPLE
f:= gfun:-rectoproc({a(n) = a(n-2)+(n^2-3*n+1)*a(n-1), a(1)=0, a(2)=1}, a(n), remember):
map(f, [$1..30]); # Robert Israel, Dec 18 2018
MATHEMATICA
M[n_] := {{0, 1}, {1, n^2 - n - 1} }
v[1] = {0, 1}
v[n_] := v[n] = M[n].v[n - 1]
Table[v[n][[1]], {n, 1, 30}]
CROSSREFS
Sequence in context: A354320 A230342 A239301 * A177555 A054746 A116005
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Sep 02 2006
EXTENSIONS
Edited by Robert Israel, Dec 18 2018
New name (using Robert Israel's formula) from Joerg Arndt, Jan 06 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)