A214916 a(0) = a(1) = 1, a(n) = n! / a(n-2).
1, 1, 2, 6, 12, 20, 60, 252, 672, 1440, 5400, 27720, 88704, 224640, 982800, 5821200, 21288960, 61102080, 300736800, 1990850400, 8089804800, 25662873600, 138940401600, 1007370302400, 4465572249600, 15397724160000, 90311261040000, 707173952284800, 3375972620697600
Offset: 0
Keywords
Links
- Joerg Arndt, Table of n, a(n) for n = 0..100
- MathOverflow, Link of a power series by the Bernoulli brothers for a Riccati equation to zonotopes?, a MathOverflow question by Tom Copeland, 2017.
Programs
-
Magma
[1] cat [n le 2 select n else Factorial(n) div Self(n-2): n in [1..30]]; // Vincenzo Librandi, Jan 25 2017
-
Python
import math prpr = prev = 1 for n in range(2, 33): print(prpr, end=', ') cur = math.factorial(n) // prpr prpr = prev prev = cur
Formula
a(0) = a(1) = 1, for n>=2, a(n) = n! / a(n-2).
Comments