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.

A111841 Number of partitions of 3^n-1 into powers of 3, also equals column 0 of triangle A111840, which shifts columns left and up under matrix cube.

This page as a plain text file.
%I A111841 #13 Oct 23 2014 19:43:17
%S A111841 1,1,3,18,216,5589,336555,49768101,18707873562,18299531019402,
%T A111841 47379925800261099,328983441917303863134,6190598463101580564238419,
%U A111841 318441251661562459898972204796,45106336219710244780433937129788943
%N A111841 Number of partitions of 3^n-1 into powers of 3, also equals column 0 of triangle A111840, which shifts columns left and up under matrix cube.
%C A111841 Let q=3; a(n) equals the partitions of q^n-1 into powers of q, or, the coefficient of x^(q^n-1) in 1/Product_{j>=0}(1-x^(q^j)).
%H A111841 T. D. Noe, <a href="/A111841/b111841.txt">Table of n, a(n) for n=0..40</a>
%F A111841 a(n) = [x^(3^n-1)] Product_{k>=0} 1/(1-x^(3^k)).
%o A111841 (PARI) {a(n,q=3)=local(A=Mat(1),B);if(n<0,0, for(m=1,n+1,B=matrix(m,m);for(i=1,m, for(j=1,i, if(j==i,B[i,j]=1,if(j==1,B[i,j]=(A^q)[i-1,1], B[i,j]=(A^q)[i-1,j-1]));));A=B);return(A[n+1,1]))}
%Y A111841 Cf. A111840, A078124 (variant).
%Y A111841 Cf. A002449.
%K A111841 nonn
%O A111841 0,3
%A A111841 _Paul D. Hanna_, Aug 22 2005