OFFSET
1,9
COMMENTS
An inversion occurs when some term is greater than some later term.
A sequence of length n can have at most n * (n - 1) / 2 inversions.
LINKS
Samuel B. Reid, Table of n, a(n) for n = 1..10000
Samuel B. Reid, Plot of one billion terms
Samuel B. Reid, C program for A333590
EXAMPLE
There are zero inversions in the first two terms of this sequence. The maximum possible number of inversions in a sequence of length 2 is 1. 0 is less than half of 1, so the third term is 0 - 1 or -1.
There are two inversions in the first 3 terms of this sequence. The maximum possible number of inversions in a sequence of length 3 is 3. 2 is more than half of 3, so the fourth term is -1 + 1 or 0.
PROG
(C) // See Links section.
(PARI) { my(v=0, f=vector(2*M=100), s=0, inv=0); for (n=1, 72, f[M+v]++; inv+=s; print1 (v", "); if (2*inv<t=n*(n-1)/2, s+=f[M+v]; v--, 2*inv>t, v++; s-=f[M+v])) } \\ Rémy Sigrist, Mar 28 2020
CROSSREFS
KEYWORD
sign
AUTHOR
Samuel B. Reid, Mar 27 2020
STATUS
approved