OFFSET
0,6
COMMENTS
Permuting the symbols will not change the structure. Identical to A056476 for n>1.
REFERENCES
M. R. Nester (1999). Mathematical investigations of some plant interaction designs. PhD Thesis. University of Queensland, Brisbane, Australia. [See A056391 for pdf file of Chap. 2]
PROG
(Python)
from sympy import mobius, divisors
def A056481(n): return sum(mobius(n//d)<<(d-1>>1) for d in divisors(n, generator=True)) if n>1 else 0 # Chai Wah Wu, Feb 18 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms (using A056476) from Joerg Arndt, May 22 2021
STATUS
approved