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!)
A323351 Number of ways to fill a (not necessarily square) matrix with n zeros and ones. 13
1, 2, 8, 16, 48, 64, 256, 256, 1024, 1536, 4096, 4096, 24576, 16384, 65536, 131072, 327680, 262144, 1572864, 1048576, 6291456, 8388608, 16777216, 16777216, 134217728, 100663296, 268435456, 536870912, 1610612736, 1073741824, 8589934592, 4294967296, 25769803776 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2^n * A000005(n) for n > 0, a(0) = 1.
G.f.: 1 + Sum_{k>=1} 2^k*x^k/(1 - 2^k*x^k). - Ilya Gutkovskiy, May 23 2019
EXAMPLE
The a(3) = 16 matrices:
[000] [001] [010] [011] [100] [101] [110] [111]
.
[0] [0] [0] [0] [1] [1] [1] [1]
[0] [0] [1] [1] [0] [0] [1] [1]
[0] [1] [0] [1] [0] [1] [0] [1]
MATHEMATICA
Table[2^n*DivisorSigma[0, n], {n, 10}]
PROG
(PARI) a(n) = if (n==0, 1, 2^n*numdiv(n)); \\ Michel Marcus, Jan 15 2019
CROSSREFS
Sequence in context: A296946 A096227 A191309 * A134353 A280229 A360323
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 15 2019
STATUS
approved

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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)