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.

A087079 Number of lunar partitions of n: number of ways of writing n as a lunar sum of distinct terms, ignoring order.

Original entry on oeis.org

1, 1, 2, 4, 8, 16, 32, 64, 128, 256, 1, 5, 22, 92, 376, 1520, 6112, 24512, 98176, 392960, 2, 22, 200, 1696, 13952, 113152, 911360, 7315456, 58621952, 469368832, 4, 92, 1696, 28928, 477184, 7749632, 124911616, 2005925888, 32153534464, 514926313472, 8
Offset: 0

Views

Author

Marc LeBrun, Oct 09 2003

Keywords

Comments

Without the condition that the numbers are distinct the answers are infinite because 1+1+1+...+1 = 1 in lunar arithmetic - see A087061.

Examples

			a(5) = 16: we can write 5 = 5 + any subset of {4, 3, 2, 1} (16 ways).
a(12) = 22: we can write 12 = 12 + any subset of {11, 10, 2, 1} (16 ways), 12 = 2 + 11 + 10 = 2 + 11 = 2 + 10 and those three with 1 added (6 ways).
		

Crossrefs

Cf. A010036.
The subsequence a(n) where n = 111..11 is A003465. - N. J. A. Sloane, May 21 2011

Programs

  • PARI
    A087079(n) = { my(v, r = 0, i, j, b); v = select(x -> x != 0, digits(n)); for (i = 0, 2^#v - 1, b = Vecrev(binary(i)); b = vector(#v, i, if (i <= #b, b[i], 0)); r += (-1)^vecsum(b) * 2^prod(j = 1, #v, if (b[j] == 1, v[j], v[j] + 1)); ); r/2;} /* Jerome Raulin, Feb 15 2017 */

Formula

For 1 <= a < 10 and 0 <= b < 10, a(10a+b) = 2^(ab+a+b-1)+(2^a-1)(2^b-1)2^(ab-1). - David Wasserman, Apr 14 2005

Extensions

More terms from David Wasserman, Apr 14 2005