OFFSET
0,4
COMMENTS
a(n+1) is equal to the number of permutations sigma of [n] such that sigma(k)/k >= sigma(k+1)/(k+1) for 1 <= k <= n-1.
LINKS
Mathematics.StackExchange, Why are the numbers of two different permutations the same?, Mar 07 2020.
EXAMPLE
In case of n = 3.
----+----------
1 | [2, 3, 1]
2 | [3, 2, 1]
In case of n = 4.
----+-------------
1 | [2, 3, 4, 1]
2 | [3, 4, 2, 1]
3 | [4, 3, 2, 1]
PROG
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Seiichi Manyama, Mar 03 2020
EXTENSIONS
a(19)-a(22) from Alois P. Heinz, Mar 03 2020
a(23)-a(25) from Giovanni Resta, Mar 04 2020
a(26)-a(33) from Bert Dobbelaere, Mar 15 2020
STATUS
approved