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.

A008645 Molien series of 6 X 6 upper triangular matrices over GF( 2 ).

This page as a plain text file.
%I A008645 #28 Sep 08 2022 08:44:36
%S A008645 1,1,2,2,4,4,6,6,10,10,14,14,20,20,26,26,36,36,46,46,60,60,74,74,94,
%T A008645 94,114,114,140,140,166,166,202,202,238,238,284,284,330,330,390,390,
%U A008645 450,450,524,524,598,598
%N A008645 Molien series of 6 X 6 upper triangular matrices over GF( 2 ).
%C A008645 Different from A018819 (see g.f.). - _Joerg Arndt_, Apr 22 2016
%D A008645 D. J. Benson, Polynomial Invariants of Finite Groups, Cambridge, 1993, p. 105.
%H A008645 G. C. Greubel, <a href="/A008645/b008645.txt">Table of n, a(n) for n = 0..1000</a>
%H A008645 INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=245">Encyclopedia of Combinatorial Structures 245</a>
%H A008645 <a href="/index/Mo#Molien">Index entries for Molien series</a>
%H A008645 <a href="/index/Rec#order_63">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, 1, 1, -1, -1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, 1, -1, -1, 1, 1, -1, -1, 1, -1, 1, 1, -1).
%F A008645 G.f.: 1/((1-x)*(1-x^2)*(1-x^4)*(1-x^8)*(1-x^16)*(1-x^32)).
%p A008645 seq(coeff(series( 1/mul((1-x^(2^j)), j=0..5)), x, n+1), x, n), n = 0..50); # _G. C. Greubel_, Feb 02 2020
%t A008645 CoefficientList[Series[1/(1-x)/(1-x^2)/(1-x^4)/(1-x^8)/(1-x^16)/(1-x^32), {x, 0, 100}], x] (* _Vaclav Kotesovec_, Apr 22 2016 *)
%o A008645 (PARI) Vec( 1/prod(j=0,5, 1-x^(2^j)) +O('x^50) ) \\ _G. C. Greubel_, Feb 02 2020
%o A008645 (Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( 1/(&*[1-x^(2^j): j in [0..5]]) )); // _G. C. Greubel_, Feb 02 2020
%o A008645 (Sage)
%o A008645 def A008645_list(prec):
%o A008645     P.<x> = PowerSeriesRing(ZZ, prec)
%o A008645     return P( 1/product(1-x^(2^j) for j in (0..5)) ).list()
%o A008645 A008645_list(50) # _G. C. Greubel_, Feb 02 2020
%K A008645 nonn,easy
%O A008645 0,3
%A A008645 _N. J. A. Sloane_