A336882 a(0) = 1; for k >= 0, 0 <= i < 2^k, a(2^k + i) = m_k * a(i), where m_k is the least odd number not in terms 0..2^k - 1.
1, 3, 5, 15, 7, 21, 35, 105, 9, 27, 45, 135, 63, 189, 315, 945, 11, 33, 55, 165, 77, 231, 385, 1155, 99, 297, 495, 1485, 693, 2079, 3465, 10395, 13, 39, 65, 195, 91, 273, 455, 1365, 117, 351, 585, 1755, 819, 2457, 4095, 12285, 143, 429, 715, 2145, 1001
Offset: 0
Keywords
Examples
a(0) = 1, as specified explicitly. m_0 = 3, the least odd number not in terms 0..0. So a(1) = a(2^0 + 0) = m_0 * a(0) = 3 * 1 = 3. m_1 = 5, the least odd number not in terms 0..1. So a(2) = a(2^1 + 0) = m_1 * a(0) = 5 * 1 = 5; and a(3) = a(2^1 + 1) = m_1 * a(1) = 5 * 3 = 15. The initial terms are tabulated below, equated with the product of their Fermi-Dirac factors to exhibit the lexicographic order. We start with 1, since 1 is factored as the empty product and the empty list is first in lexicographic order. n a(n) 0 1, 1 3 = 3, 2 5 = 5, 3 15 = 5 * 3, 4 7 = 7, 5 21 = 7 * 3, 6 35 = 7 * 5, 7 105 = 7 * 5 * 3, 8 9 = 9, 9 27 = 9 * 3, 10 45 = 9 * 5, 11 135 = 9 * 5 * 3, 12 63 = 9 * 7.
Links
- Sean A. Irvine, Java program (github)
Comments