A064630 Number of parts if 4^n is partitioned into parts of size 3^n as far as possible into parts of size 2^n as far as possible and into parts of size 1^n.
2, 5, 5, 16, 25, 15, 66, 121, 146, 771, 1220, 3641, 8093, 15843, 28359, 50236, 33366, 36709, 145250, 137776, 548024, 2186496, 1066102, 4251976, 16984368, 28678103, 13620614, 205950171, 100716646, 381399635, 1397934923, 3826001641
Offset: 1
Keywords
Examples
4^6 = 4096 = 729 + 729 + 729 + 729 + 729 + 64 + 64 + 64 + 64 + 64 + 64 + 64 + 1 + 1 + 1 = 5*3^6 + 7*2^6 + 3*1^6, so a(6) = 5 + 7 + 3 = 15.
Links
- Harry J. Smith, Table of n, a(n) for n = 1..250
Programs
-
PARI
{for(n=1,32,a=divrem(4^n,3^n); b=divrem(a[2],2^n); print1(a[1]+b[1]+b[2],","))}
-
PARI
{ f=t=w=1; for (n=1, 250, f*=4; t*=3; w*=2; a=divrem(f, t); b=divrem(a[2], w); write("b064630.txt", n, " ", a[1]+b[1]+b[2]) ) } \\ Harry J. Smith, Sep 20 2009
Formula
Extensions
Edited by Klaus Brockhaus, May 24 2003
Comments