OFFSET
1,3
COMMENTS
If chi has order d, then Q(tau(chi)) is the compositum of Q(zeta_d) and Q(zeta_p)^G, where G is the unique index-d subgroup of (Z/pZ)*. See the Math Stack Exchange link below.
LINKS
Jianing Song, Table of n, a(n) for n = 1..10001 (Rows 1..713)
FORMULA
T(n,k) = d*EulerPhi(d), where d is the k-th divisor of prime(n)-1.
EXAMPLE
The first rows:
1;
1, 2;
1, 2, 8;
1, 2, 6, 12;
1, 2, 20, 40;
1, 2, 6, 8, 12, 48;
1, 2, 8, 32, 128;
1, 2, 6, 12, 54, 108;
1, 2, 110, 220;
1, 2, 8, 42, 84, 336.
See A396254 for explanations of rows 3 and 4.
PROG
(PARI) row(n) = my(p=prime(n), v=divisors(p-1), len=#v); for(i=1, len, v[i]=v[i]*eulerphi(v[i])); v
CROSSREFS
KEYWORD
nonn,tabf,easy
AUTHOR
Jianing Song, May 20 2026
STATUS
approved
