cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A050182 a(n) = T(2*n+4, n), array T as in A051168 (a count of Lyndon words).

This page as a plain text file.
%I A050182 #22 Oct 28 2021 10:53:17
%S A050182 0,1,3,12,40,143,497,1768,6288,22610,81686,297160,1086384,3991995,
%T A050182 14732005,54587280,202995232,757398510,2834502346,10637507400,
%U A050182 40023606896,150946230006,570534474698,2160865067312,8199711007200
%N A050182 a(n) = T(2*n+4, n), array T as in A051168 (a count of Lyndon words).
%C A050182 We have A051168(n,k) = (1/n) * Sum_{d | gcd(n,k)} mu(d) * binomial(n/d, k/d) for 0 <= k <= n with n > 0. If n is odd, gcd(2*n + 4, n) = 1. If n is even, gcd(2*n + 4, n) = 2 or 4, but mu(2) = -1 and mu(4) = 0. From these facts, we can prove the formula below. - _Petros Hadjicostas_, Jul 27 2020
%H A050182 <a href="/index/Lu#Lyndon">Index entries for sequences related to Lyndon words</a>
%F A050182 a(n) = binomial(2*n + 4, n)/(2*n + 4), if n is odd, and a(n) = (binomial(2*n + 4, n) - binomial(n + 2, n/2))/(2*n + 4), if n is even. - _Petros Hadjicostas_, Jul 27 2020
%F A050182 D-finite with recurrence -(n+4) *(n+3) *(11*n-8)*a(n) +10 *(n+3) *(7*n^2+6*n-10) *a(n-1) -60 *n *(n^2-n-5)*a(n-2) -40 *n *(7*n^2+6*n-10) *a(n-3) +16*(n-1) *(13*n+4) *(2*n-3) *a(n-4)=0. - _R. J. Mathar_, Oct 28 2021
%p A050182 A050182 := proc(n)
%p A050182     binomial(2*n+4,n) ;
%p A050182     if type(n,'even') then
%p A050182         %-binomial(n+2,n/2) ;
%p A050182     end if;
%p A050182     %/(2*n+4) ;
%p A050182 end proc:
%p A050182 seq(A050182(n),n=0..40) ; # _R. J. Mathar_, Oct 28 2021
%Y A050182 A diagonal of the square array described in A051168.
%K A050182 nonn
%O A050182 0,3
%A A050182 _Clark Kimberling_