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!)
A218474 Number of 3n-length 4-ary words, either empty or beginning with the first letter of the alphabet, that can be built by repeatedly inserting triples of identical letters into the initially empty word. 2

%I #14 Dec 18 2020 11:51:16

%S 1,1,10,127,1810,27631,441604,7293700,123485914,2131511455,

%T 37368531010,663539143015,11908626395320,215670579863428,

%U 3936425910379840,72335601620713432,1337149262553687658,24847762997547701695,463900901255209923310,8697278488612398979645

%N Number of 3n-length 4-ary words, either empty or beginning with the first letter of the alphabet, that can be built by repeatedly inserting triples of identical letters into the initially empty word.

%H Alois P. Heinz, <a href="/A218474/b218474.txt">Table of n, a(n) for n = 0..300</a>

%F a(n) = 1/n * Sum_{j=0..n-1} C(3*n,j)*(n-j)*3^j for n>0, a(0) = 1.

%F a(n) ~ 3^(4*n+3/2) / (25*sqrt(Pi)*n^(3/2)*4^n). - _Vaclav Kotesovec_, Jul 16 2014

%p a:= n-> `if`(n=0, 1, add(binomial(3*n, j)*(n-j)*3^j, j=0..n-1)/n):

%p seq(a(n), n=0..20);

%p # second Maple program:

%p a:= proc(n) option remember; `if`(n<3, [1, 1, 10][n+1],

%p ((2359*n^3 -5063*n^2 +2898*n -360)*a(n-1)

%p -576*(3*n-5)*(7*n-2)*(3*n-4)*a(n-2))/

%p (2*(2*n-1)*(7*n-9)*n))

%p end:

%p seq(a(n), n=0..30);

%t a[n_] := If[n == 0, 1, Sum[Binomial[3n, j] (n - j) 3^j, {j, 0, n - 1}]/n];

%t a /@ Range[0, 20] (* _Jean-François Alcover_, Dec 18 2020, after Maple *)

%Y Column k=4 of A213027.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Oct 29 2012

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 August 19 13:48 EDT 2024. Contains 375302 sequences. (Running on oeis4.)