OFFSET
0,2
COMMENTS
A permutation of the odd numbers.
Every positive integer, m, is the product of a unique subset of the terms of A050376. The members of the subset are often known as the Fermi-Dirac factors of m. In this sequence, the odd numbers appear lexicographically according to their Fermi-Dirac factors (with those factors listed in decreasing order). The equivalent sequence for all positive integers is A052330.
LINKS
Sean A. Irvine, Java program (github)
FORMULA
EXAMPLE
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.
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Munn, Aug 16 2020
STATUS
approved