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!)
A088009 Number of "sets of odd lists", cf. A000262. 22

%I #90 Feb 01 2022 17:11:39

%S 1,1,1,7,25,181,1201,10291,97777,1013545,12202561,151573951,

%T 2173233481,31758579997,524057015665,8838296029291,164416415570401,

%U 3145357419120721,65057767274601217,1391243470549894135,31671795881695430521,747996624368605997701

%N Number of "sets of odd lists", cf. A000262.

%C The Brauer algebra has a basis consisting of all graphs on the vertex set {1,...,2n} whose vertices all have degree 1. The multiplication is defined in Halverson and Ram. a(n) is also the number of idempotent basis elements (i.e., those satisfying b^2=b) of the Brauer algebra. - _James East_, Dec 27 2013

%C From _Peter Bala_, Nov 26 2017: (Start)

%C The sequence terms have the form 6*m + 1 (follows from the recurrence).

%C a(n+k) = a(n) (mod k) for all n and k. It follows that the sequence a(n) (mod k) is periodic with the exact period dividing k. For example, modulo 10 the sequence becomes 1, 1, 1, 7, 5, 1, 1, 1, 7, 5, ... with exact period 5. (End)

%H Seiichi Manyama, <a href="/A088009/b088009.txt">Table of n, a(n) for n = 0..446</a> (terms 0..200 from Alois P. Heinz)

%H I. Dolinka, J. East, A. Evangelou, D. FitzGerald, N. Ham, et al., <a href="http://arxiv.org/abs/1408.2021">Enumeration of idempotents in diagram semigroups and algebras</a>, arXiv preprint arXiv:1408.2021 [math.GR], 2014.

%H T. Halverson and A. Ram, <a href="http://arxiv.org/abs/math/0401314">Partition algebras</a>, arXiv:math/0401314 [math.RT], 2004.

%H T. Halverson and A. Ram, <a href="http://dx.doi.org/10.1016/j.ejc.2004.06.005">Partition algebras</a>, European J. Combin. 26 (6) (2005) 869-921.

%F E.g.f.: exp(x/(1-x^2)).

%F a(n) = n!*Sum_{k=1..n} A168561(n-1,k-1)/k!. - _Vladimir Kruchinin_, Mar 07 2011

%F E.g.f.: 1 + x/(G(0)-x) where G(k)= (1-x^2)*k + 1+x-x^2 - x*(1-x^2)*(k+1)/G(k+1); (continued fraction, Euler's 1st kind, 1-step). - _Sergei N. Gladkovskii_, Aug 02 2012

%F E.g.f.: 1 + x/(1+x)*(G(0) - 1) where G(k) = 1 + 1/(1+x^2)/(k+1)/(1-x/(x+(1)/G(k+1))), (continued fraction). - _Sergei N. Gladkovskii_, Feb 04 2013

%F a(n) ~ 2^(-3/4)*n^(n-1/4)*exp(sqrt(2*n)-n) * (1-11/(24*sqrt(2*n))). - _Vaclav Kotesovec_, Aug 10 2013

%F D-finite with recurrence a(n) = a(n-1) + 2*(n-2)*(n-1)*a(n-2) + (n-2)*(n-1)*a(n-3) - (n-4)*(n-3)*(n-2)*(n-1)*a(n-4). - _Vaclav Kotesovec_, Aug 10 2013

%F E.g.f.: Product_{n >= 1} (1 + x^n)^(phi(n)/n) = Product_{n >= 0} ( (1 + x^(2*n+1))/(1 - x^(2*n+1)) )^( phi(2*n+1)/(4*n + 2) ), where phi(n) = A000010(n) is the Euler totient function. Cf. A066668 and A000262. - _Peter Bala_, Jan 01 2014

%F E.g.f.: Product_{k>0} exp(x^(2*k-1)). - _Seiichi Manyama_, Oct 10 2017

%e From _R. J. Mathar_, Feb 01 2022 (Start):

%e Examples of partitions of elements {1,2,..n} into sets of lists where each list contains an odd number of elements:

%e n=1: One set where the element is the list.

%e n=2: One set where each of the 2 elements is its own list.

%e n=3: One set where each of the 3 elements is its own list, plus 6=3! sets of a list of all 3 elements.

%e n=4: One set where each of the 4 elements is its own list, plus 4*3! sets where one (4 choices) element is its own list and the remaining 3 elements are in another list.

%e n=5: One set where each of the 5 elements is its own list, plus 5!=120 sets where all 5 elements are in the same list, plus binomial(5,2)*3!=60 sets where two elements are in their own lists and the other 3 in a third list. (End)

%p T:= (n, k)-> `if`(n-k mod 2 = 0, binomial((n+k)/2, k), 0):

%p a:= n-> n! * add(T(n-1, k-1)/k!, k=0..n):

%p seq(a(n), n=0..40); # _Alois P. Heinz_, Mar 07 2011

%p # second Maple program:

%p a:= proc(n) option remember; `if`(n=0, 1, add((i->

%p a(n-i)*binomial(n-1, i-1)*i!)(2*j+1), j=0..(n-1)/2))

%p end:

%p seq(a(n), n=0..23); # _Alois P. Heinz_, Feb 01 2022

%t a[n_] := SeriesCoefficient[ Exp[x/(1 - x^2) ], {x, 0, n}]*n!; Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, Feb 24 2015 *)

%o (PARI)

%o x='x+O('x^33);

%o Vec(serlaplace(exp(x/(1-x^2))))

%o /* _Joerg Arndt_, Mar 09 2011 */

%Y Cf. A052845, A088026, A000010, A000262, A168561, A318976.

%K nonn,easy

%O 0,4

%A _Vladeta Jovovic_, Nov 02 2003

%E Prepended a(0)=1 by _Joerg Arndt_, Jul 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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)