Identifier
Values
[+,+] => 3
[-,+] => 1
[+,-] => -1
[-,-] => -3
[2,1] => 0
[+,+,+] => 6
[-,+,+] => 4
[+,-,+] => 2
[+,+,-] => 0
[-,-,+] => 0
[-,+,-] => -2
[+,-,-] => -4
[-,-,-] => -6
[+,3,2] => 1
[-,3,2] => -1
[2,1,+] => 3
[2,1,-] => -3
[2,3,1] => 0
[3,1,2] => 0
[3,+,1] => 2
[3,-,1] => -2
[+,+,+,+] => 10
[-,+,+,+] => 8
[+,-,+,+] => 6
[+,+,-,+] => 4
[+,+,+,-] => 2
[-,-,+,+] => 4
[-,+,-,+] => 2
[-,+,+,-] => 0
[+,-,-,+] => 0
[+,-,+,-] => -2
[+,+,-,-] => -4
[-,-,-,+] => -2
[-,-,+,-] => -4
[-,+,-,-] => -6
[+,-,-,-] => -8
[-,-,-,-] => -10
[+,+,4,3] => 3
[-,+,4,3] => 1
[+,-,4,3] => -1
[-,-,4,3] => -3
[+,3,2,+] => 5
[-,3,2,+] => 3
[+,3,2,-] => -3
[-,3,2,-] => -5
[+,3,4,2] => 1
[-,3,4,2] => -1
[+,4,2,3] => 1
[-,4,2,3] => -1
[+,4,+,2] => 4
[-,4,+,2] => 2
[+,4,-,2] => -2
[-,4,-,2] => -4
[2,1,+,+] => 7
[2,1,-,+] => 1
[2,1,+,-] => -1
[2,1,-,-] => -7
[2,1,4,3] => 0
[2,3,1,+] => 4
[2,3,1,-] => -4
[2,3,4,1] => 0
[2,4,1,3] => 0
[2,4,+,1] => 3
[2,4,-,1] => -3
[3,1,2,+] => 4
[3,1,2,-] => -4
[3,1,4,2] => 0
[3,+,1,+] => 6
[3,-,1,+] => 2
[3,+,1,-] => -2
[3,-,1,-] => -6
[3,+,4,1] => 2
[3,-,4,1] => -2
[3,4,1,2] => 0
[3,4,2,1] => 0
[4,1,2,3] => 0
[4,1,+,2] => 3
[4,1,-,2] => -3
[4,+,1,3] => 2
[4,-,1,3] => -2
[4,+,+,1] => 5
[4,-,+,1] => 1
[4,+,-,1] => -1
[4,-,-,1] => -5
[4,3,1,2] => 0
[4,3,2,1] => 0
[+,+,+,+,+] => 15
[-,+,+,+,+] => 13
[+,-,+,+,+] => 11
[+,+,-,+,+] => 9
[+,+,+,-,+] => 7
[+,+,+,+,-] => 5
[-,-,+,+,+] => 9
[-,+,-,+,+] => 7
[-,+,+,-,+] => 5
[-,+,+,+,-] => 3
[+,-,-,+,+] => 5
[+,-,+,-,+] => 3
[+,-,+,+,-] => 1
[+,+,-,-,+] => 1
[+,+,-,+,-] => -1
>>> Load all 412 entries. <<<
search for individual values
searching the database for the individual values of this statistic
/
search for generating function
searching the database for statistics with the same generating function
Description
Sum of decorated fixed points as signed integers.
Every fixed point decorated with a '+' is treated as a positive integer, and every fixed point decorated with a '-' is treated as a negative integer.
Every fixed point decorated with a '+' is treated as a positive integer, and every fixed point decorated with a '-' is treated as a negative integer.
Code
def fixed_points_with_signs(pi):
pi = list(pi)
tau = []
for i,a in enumerate(pi):
if i+1==abs(a):
tau.append(pi[i])
return tau
def statistic(pi):
return sum(list(fixed_points_with_signs(pi)))
Created
May 11, 2020 at 18:39 by James Thorne
Updated
May 11, 2020 at 18:39 by James Thorne
searching the database
Sorry, this statistic was not found in the database
or
add this statistic to the database – it's very simple and we need your support!