login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A032131 Shifts left 2 places under the "BIK" (reversible, indistinct, unlabeled) transform with a(1) = a(2) = 1. 2

%I #34 Sep 17 2019 03:48:57

%S 1,1,1,2,3,7,13,31,66,160,369,907,2191,5461,13558,34209,86426,220359,

%T 563475,1449282,3739365,9688104,25173917,65621067,171498288,449361649,

%U 1180078602,3105740797,8189749105,21636207962,57257857968,151771200002,402899862910,1071076810324,2851165864937

%N Shifts left 2 places under the "BIK" (reversible, indistinct, unlabeled) transform with a(1) = a(2) = 1.

%C From _Petros Hadjicostas_, Jan 14 2018: (Start)

%C For this sequence, if (b(n): n>=1) = BIK((a(n): n>=1)), then b(n) = a(n+2) for n>=1.

%C Let A(x) = Sum_{n>=1} a(n)*x^n be the g.f. for this sequence. For an explanation on how to derive the formula BIK(A(x)) = (1/2)*(A(x)/(1-A(x)) + (A(x) + A(x^2))/(1 - A(x^2))) from Bower's formulae in the link below about transforms, see the comments for sequence A001224. (For that sequence, the roles of sequences (a(n): n>=1) and (b(n): n>=1) are reversed.)

%C (End)

%H Andrew Howroyd, <a href="/A032131/b032131.txt">Table of n, a(n) for n = 1..200</a>

%H C. G. Bower, <a href="/transforms2.html">Transforms (2)</a>

%F From _Petros Hadjicostas_, Jan 14 2018: (Start)

%F G.f.: If A(x) = Sum_{n>=1} a(n)*x^n, then (A(x) - a(1)*x - a(2)*x^2)/x^2 = BIK(A(x)) = (1/2)*(A(x)/(1-A(x)) + (A(x) + A(x^2))/(1-A(x^2))). Here, a(1) = a(2) = 1.

%F In general, we have:

%F a(3) = a(1),

%F a(4) = (1/2)*(a(1)^2 + a(1) + 2*a(2)),

%F a(5) = (1/2)*(a(1)^2 + a(1) + 2*a(2) + 2)*a(1),

%F a(6) = (1/2)*(a(1)^4 + 4*a(1)^2 + (3*a(1)^2 + a(1) + 3)*a(2) + a(2)^2 + a(1)),

%F a(7) = (1/2)*(a(1)^4 + 4*a(1)^2*a(2) + 6*a(1)^2 + 3*a(2)^2 + 3*a(1) + 7*a(2) + 2)*a(1),

%F and so on. No pattern is apparent here.

%F (End)

%t m = 36; a[1] = a[2] = 1; A[_] = 0;

%t Do[A[x_] = x^2 (a[1]/x + a[2] + (1/2)(A[x]/(1 - A[x]) + (A[x] + A[x^2])/(1 - A[x^2]))) + O[x]^m // Normal, {m}];

%t CoefficientList[A[x], x] // Rest (* _Jean-François Alcover_, Sep 17 2019 *)

%o (PARI)

%o BIK(p)={(1/(1-p) + (1+p)/subst(1-p, x, x^2))/2}

%o seq(n)={my(p=1+O(x^(n%2)));for(i=1, n\2, p=1+x*BIK(x*p)); Vec(p)} \\ _Andrew Howroyd_, Aug 30 2018

%Y Cf. A001224, A032128, A032130.

%K nonn

%O 1,4

%A _Christian G. Bower_

%E Name edited by _Petros Hadjicostas_, Jan 14 2018

%E a(31)-a(35) from _Petros Hadjicostas_, Jan 14 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 21:46 EDT 2024. Contains 371781 sequences. (Running on oeis4.)