OFFSET
1,2
COMMENTS
LINKS
Jianing Song, Table of n, a(n) for n = 1..1000
Helmut Ruhland, A family of lattices with an unbounded number of unit vectors, arXiv:2410.16172 [math.MG], 2024. See p. 2.
FORMULA
If the factorization of n into primes is n = Product_{i=1..r} p_i with p_1 >= p_2 >= ... >= p_r, then a(n) <= (q_1)^((p_1)-1) * (q_2)^((p_2)-1) * ... * (q_r)^((p_r)-1), where q_1 < q_2 < ... < q_r are the first r primes congruent to 1 modulo 3. The smallest n such that the equality does not hold is n = 128. [Those n such that the equality does not hold are listed in A355919. - Jianing Song, Jul 21 2022]
a(n) <= 7^(n-1) for all n, where the equality holds if and only if n = 1 or n is a prime.
a(p*q) = 7^(p-1) * 13^(q-1) for primes p >= q.
EXAMPLE
91 = 7 * 13 is the smallest number all of whose prime factors are congruent to 1 modulo 3 with exactly 4 divisors, so a(4) = 91.
8281 = 7^2 * 13^2 is the smallest number all of whose prime factors are congruent to 1 modulo 3 with exactly 9 divisors, so a(9) = 8281.
PROG
(PARI) primelist(d, r, l) = my(v=vector(l), i=0); if(l>0, forprime(p=2, oo, if(Mod(p, d)==r, i++; v[i]=p; if(i==l, break())))); v
prodR(n, maxf)=my(dfs=divisors(n), a=[], r); for(i=2, #dfs, if( dfs[i]<=maxf, if(dfs[i]==n, a=concat(a, [[n]]), r=prodR(n/dfs[i], min(dfs[i], maxf)); for(j=1, #r, a=concat(a, [concat(dfs[i], r[j])]))))); a
CROSSREFS
KEYWORD
nonn
AUTHOR
Jianing Song, Apr 28 2021
STATUS
approved