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!)
A261737 Number of partitions of n where each part i is marked with a word of length i over a ternary alphabet whose letters appear in alphabetical order. 3

%I #17 May 10 2021 04:41:14

%S 1,3,15,55,216,729,2621,8535,28689,91749,296538,929712,2939063,

%T 9093255,28257123,86681608,266368959,811501848,2475331535,7505567037,

%U 22772955015,68828023329,208079886258,627418618533,1892181244828,5696253823476,17149663331259

%N Number of partitions of n where each part i is marked with a word of length i over a ternary alphabet whose letters appear in alphabetical order.

%H Alois P. Heinz, <a href="/A261737/b261737.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n) ~ c * 3^n, where c = Product_{k>=2} 1/(1 - (k+1)*(k+2)/(2*3^k)) = 6.84620607349852135789816336867607014231681538613599316638081993041973716978... . - _Vaclav Kotesovec_, Nov 15 2016, updated May 10 2021

%F G.f.: Product_{k>=1} 1 / (1 - binomial(k+2,2)*x^k). - _Ilya Gutkovskiy_, May 09 2021

%p b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p b(n, i-1)+`if`(i>n, 0, b(n-i, i)*binomial(i+2, 2))))

%p end:

%p a:= n-> b(n$2):

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

%t b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1] + If[i > n, 0, b[n - i, i]*Binomial[i + 2, 2]]]];

%t a[n_] := b[n, n];

%t Table[a[n], {n, 0, 30}] {* _Jean-François Alcover_, May 24 2018, translated from Maple *)

%Y Column k=3 of A261718.

%Y Cf. A293367.

%K nonn

%O 0,2

%A _Alois P. Heinz_, Aug 30 2015

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 September 13 05:52 EDT 2024. Contains 375859 sequences. (Running on oeis4.)