OFFSET
0,5
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000
Bar-Natan, Dror, On the Vassiliev Knot Invariants, Topology 34 (1995) 423-472.
D. Bar-Natan, Bibliography of Vassiliev Invariants
Joan S. Birman, New points of view in knot theory (amstex), Bull. Amer. Math. Soc. (N.S.) 28 (1993), no. 2, 253-287.
Jan Kneissler, The number of primitive Vassiliev invariants of degree up to 12, arXiv:q-alg/9706022, 1997.
FORMULA
a(n) = a(n-1) + A001935(n-4), n>3. - R. J. Mathar, Mar 06 2016
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, add(b(n-j)*add(`if`(
irem(d, 4)=0, 0, d), d=numtheory[divisors](j)), j=1..n)/n)
end:
a:= proc(n) option remember; `if`(n<4, 1, a(n-1)+b(n-4)) end:
seq(a(n), n=0..60); # Alois P. Heinz, Jul 21 2018
MATHEMATICA
QP = QPochhammer; Join[{1, 0, 0, 0}, CoefficientList[QP[q^4]/QP[q]+O[q]^50, q]] // Accumulate (* Jean-François Alcover, Jul 21 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved