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!)
A143454 Expansion of 1/(x^k*(1 - x - 3*x^(k+1))) for k=3. 5

%I #59 Jan 03 2023 07:21:53

%S 1,4,7,10,13,25,46,76,115,190,328,556,901,1471,2455,4123,6826,11239,

%T 18604,30973,51451,85168,140980,233899,388252,643756,1066696,1768393,

%U 2933149,4864417,8064505,13369684,22169131,36762382,60955897,101064949,167572342

%N Expansion of 1/(x^k*(1 - x - 3*x^(k+1))) for k=3.

%C a(n) is also the number of length n quaternary words with at least 3 0-digits between any other digits.

%C The compositions of n in which each natural number is colored by one of p different colors are called p-colored compositions of n. For n >= 7, 4*a(n-7) equals the number of 4-colored compositions of n with all parts >= 4, such that no adjacent parts have the same color. - _Milan Janjic_, Nov 27 2011

%H Vincenzo Librandi, <a href="/A143454/b143454.txt">Table of n, a(n) for n = 0..1000</a>

%H D. Birmajer, J. B. Gil, and M. D. Weiner, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL19/Gil/gil6.html">On the Enumeration of Restricted Words over a Finite Alphabet</a>, J. Int. Seq. 19 (2016) # 16.1.3, Example 9.

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

%F G.f.: (1 + 3*x + 3*x^2 + 3*x^3) / (1 - x - 3*x^4). - _R. J. Mathar_, Aug 04 2019

%F a(n) = Sum_{j=0..(n+3)/3} 3^j*C(n-3*j+3,j). - _Vladimir Kruchinin_, May 24 2011

%p a:= proc(k::nonnegint) local n,i,j; if k=0 then unapply(4^n,n) else unapply((Matrix(k+1, (i,j)-> if (i=j-1) or j=1 and i=1 then 1 elif j=1 and i=k+1 then 3 else 0 fi)^(n+k))[1,1], n) fi end(3): seq(a(n), n=0..50);

%t a[n_]:= Sum[3^j*Binomial[n-3*j+3, j], {j, 0, (n+3)/3}]; Table[a[n], {n, 0, 50}] (* _Jean-François Alcover_, Feb 04 2014, after _Vladimir Kruchinin_ *)

%t LinearRecurrence[{1,0,0,3}, {1,4,7,10}, 41] (* _G. C. Greubel_, May 08 2021 *)

%o (Maxima) a(n):= sum(3^j*binomial(n-3*j+3,j), j,0,(n+3)/3); /* _Vladimir Kruchinin_, May 24 2011 */

%o (PARI) Vec(1/(x^3*(1-x-3*x^4))+O(x^99)) \\ _Charles R Greathouse IV_, Sep 26 2012

%o (PARI) my(p=Mod('x,'x^4-'x^3-3)); a(n) = vecsum(Vec(lift(p^(n+3)))); \\ _Kevin Ryde_, May 11 2021

%o (Magma) [n le 4 select 3*n-2 else Self(n-1) +3*Self(n-4): n in [1..51]]; // _G. C. Greubel_, May 08 2021

%o (Sage)

%o def a(n): return 3*n+1 if (n<4) else a(n-1) + 3*a(n-4)

%o [a(n) for n in (0..40)] # _G. C. Greubel_, May 08 2021

%Y 3rd column of A143461.

%K nonn,easy

%O 0,2

%A _Alois P. Heinz_, Aug 16 2008

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 24 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)