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!)
A193147 G.f.: 1/(1 - x - 2*x^3 - x^5). 6

%I #47 Dec 20 2021 05:26:22

%S 1,1,1,3,5,8,15,26,45,80,140,245,431,756,1326,2328,4085,7168,12580,

%T 22076,38740,67985,119305,209365,367411,644761,1131476,1985603,

%U 3484490,6114853,10730820,18831276,33046585,57992715,101770120,178594110,313410816,549997641

%N G.f.: 1/(1 - x - 2*x^3 - x^5).

%C The Ze3 sums, see A180662 for the definition of these sums, of the "Races with Ties" triangle A035317 equal this sequence.

%C Number of tilings of a 5 X 2n rectangle with 5 X 1 pentominoes. - _M. Poyraz Torcuk_, Dec 18 2021

%H <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,0,2,0,1).

%F G.f.: 1/(1-x-2*x^3-x^5) = -1 / ( (1+x+x^2)*(x^3-x^2+2*x-1) )

%F a(n) = a(n-1) + 2*a(n-3) + a(n-5) with a(n) = 0 for n= -4, -3, -2, -1 and a(0) = 1.

%F a(n) = (5*b(n+1) - 4*b(n) + 3*b(n-1) + 2*c(n) + 3*c(n-1))/7 with b(n) = A005314(n) and c(n) = A049347(n).

%F G.f.: 1 + x/(U(0)-x) where G(k)= 1 - x^2*(k+1)/(1 - 1/(1 + (k+1)/G(k+1))); (continued fraction). - _Sergei N. Gladkovskii_, Nov 17 2012

%F a(n) = Sum_{m=floor((n+1)/2)..n} Sum_{j=0..2*m-n} C(j,3*n-5*m+2*j) * C(2*m-n,j) * 2^(3*n-5*m+2*j). - _Vladimir Kruchinin_, Mar 10 2013

%F With offset 1, the INVERT transform of (1 + 2x^2 + x^4). - _Gary W. Adamson_, Mar 30 2017

%p A193147 := proc(n) option remember: if n>=-4 and n<=-1 then 0 elif n=0 then 1 else procname(n-1) + 2*procname(n-3) + procname(n-5) fi: end: seq(A193147(n), n=0..32);

%t Series[1/(1 - x - 2*x^3 - x^5), {x, 0, 32}] // CoefficientList[#, x]& (* _Jean-François Alcover_, Apr 02 2015 *)

%o (Maxima)

%o a(n):=sum(sum(binomial(j,3*n-5*m+2*j)*binomial(2*m-n,j)*2^(3*n-5*m+2*j), j,0,2*m-n),m,floor((n+1)/2),n); /* _Vladimir Kruchinin_, Mar 10 2013 */

%Y Bisection of A003520.

%Y Cf. A035317, A180662.

%K nonn,easy

%O 0,4

%A _Johannes W. Meijer_, Jul 20 2011

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 25 09:08 EDT 2024. Contains 371964 sequences. (Running on oeis4.)