login

Revision History for A094678

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
#30 by Susanna Cuyler at Sun Jul 22 08:42:24 EDT 2018
STATUS

reviewed

approved

#29 by Joerg Arndt at Sun Jul 22 06:43:06 EDT 2018
STATUS

proposed

reviewed

#28 by Michel Marcus at Sun Jul 22 06:03:08 EDT 2018
STATUS

editing

proposed

#27 by Michel Marcus at Sun Jul 22 06:03:04 EDT 2018
NAME

a(n) = A003474(n)/n.

COMMENTS

For n>=2, a(n) = f(n)/(2^(n-1)) where f(n) is the number of Hamiltonian cycles in the 3-ary De de Bruijn graph (i.e., graph with 3*n nodes {0..3*n-1} and edges from each i to 3*i (mod 3*n), 3*i+1 (mod 3*n), and 3*i+2 (mod 3*n); cf. A192513). - Joerg Arndt, Jul 03 2011.

STATUS

proposed

editing

#26 by Jean-François Alcover at Sun Jul 22 05:50:30 EDT 2018
STATUS

editing

proposed

#25 by Jean-François Alcover at Sun Jul 22 05:50:23 EDT 2018
MATHEMATICA

p = 3; numNormalp[n_] := Module[{r, i, pp = 1}, Do[r = MultiplicativeOrder[p, d]; i = EulerPhi[d]/r; pp *= (1 - 1/p^r)^i, {d, Divisors[n]}]; Return[pp]];

a[1] = 1; a[n_] := Module[{t = 1, q = n, pp}, While[0 == Mod[q, p], q /= p; t += 1]; pp = numNormalp[q]; pp *= p^n/n; Return[pp]];

Array[a, 40] (* Jean-François Alcover, Jul 22 2018, after Joerg Arndt *)

STATUS

approved

editing

#24 by Charles R Greathouse IV at Sun Dec 07 10:27:35 EST 2014
STATUS

editing

approved

#23 by Charles R Greathouse IV at Sun Dec 07 10:27:31 EST 2014
COMMENTS

Number of normal bases for GF(3^n) over GF(3). [_- _Joerg Arndt_, Jul 03 2011]

For n>=2, a(n)=f(n)/(2^(n-1)) where f(n) is the number of Hamiltonian cycles in the 3-ary De Bruijn graph (i.e., graph with 3*n nodes {0..3*n-1} and edges from each i to 3*i (mod 3*n), 3*i+1 (mod 3*n), and 3*i+2 (mod 3*n); cf. A192513). [_- _Joerg Arndt_, Jul 03 2011]. For details on this correspondence, see A192513 [_Dmitrii Pasechnik_, Dec 07 2014].

For details on this correspondence, see A192513. - Dmitrii Pasechnik, Dec 07 2014

STATUS

reviewed

editing

#22 by Joerg Arndt at Sun Dec 07 10:23:19 EST 2014
STATUS

proposed

reviewed

#21 by Michel Marcus at Sun Dec 07 09:26:00 EST 2014
STATUS

editing

proposed

Discussion
Sun Dec 07
10:23
Joerg Arndt: Thanks very much!