A032173 Sequence (a(n): n >= 1) that shifts left 2 places under the "CHK" (necklace, identity, unlabeled) transform and has initial terms a(1) = a(2) = 1.
1, 1, 1, 1, 2, 3, 7, 12, 28, 55, 122, 258, 574, 1254, 2813, 6283, 14220, 32237, 73631, 168660, 388331, 896790, 2078822, 4832343, 11266422, 26332119, 61694574, 144858260, 340829231, 803427128, 1897269215, 4487725726
Offset: 1
Keywords
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..200
- C. G. Bower, Transforms (2)
Programs
-
Mathematica
a[1] = a[2] = 1; c[1] = 1; c[2] = 3; a[n_] := a[n] = 1/(n-2) Sum[MoebiusMu[(n-2)/d] c[d], {d, Divisors[n-2]}]; c[n_] := c[n] = n a[n] + Sum[c[s] a[n-s], {s, 1, n-1}]; Array[a, 32] (* Jean-François Alcover, Jan 02 2019 *)
-
PARI
CHK(p,n)={sum(d=1, n, moebius(d)/d*log(subst(1/(1+O(x*x^(n\d))-p), x, x^d)))} seq(n)={my(p=1+O(x));for(i=1, n\2, p=1+x+x*CHK(x*p, 2*i)); Vec(p+O(x^n))} \\ Andrew Howroyd, Jun 20 2018
Extensions
Name modified by Petros Hadjicostas, Jan 01 2019
Comments