A032202 Sequence (a(n): n >= 1) that shifts left 2 places under the "CIK" (necklace, indistinct, unlabeled) transform and satisfies a(1) = a(2) = 1.
1, 1, 1, 2, 3, 6, 10, 22, 41, 92, 193, 435, 963, 2215, 5051, 11754, 27375, 64381, 151898, 360661, 859149, 2055804, 4934428, 11883930, 28699336, 69497354, 168691424, 410399073, 1000486306, 2443761830, 5979742904, 14656709518
Offset: 1
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..200
- C. G. Bower, Transforms (2)
- Index entries for sequences related to mobiles
Programs
-
Mathematica
m = 33; a[1] = a[2] = 1; A[_] = 0; Do[A[x_] = x(a[1] + x a[2] - x Sum[EulerPhi[n] Log[1-A[x^n]]/n, {n, 1, m}]) + O[x]^m // Normal, {m}]; CoefficientList[A[x], x] // Rest (* Jean-François Alcover, Sep 17 2019 *)
-
PARI
CIK(p,n)={sum(d=1, n, eulerphi(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*CIK(x*p, 2*i)); Vec(p+O(x^n))} \\ Andrew Howroyd, Jun 20 2018
Extensions
Name modified by Petros Hadjicostas, Jan 01 2019
Comments