login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A213331 Number of isomorphism classes of reduced Witt rings of fields with 2n orderings. 2
1, 2, 3, 6, 9, 16, 24, 42, 64, 105, 159, 258, 390, 614, 925, 1441, 2162, 3317, 4951, 7526, 11191, 16841, 24923, 37253, 54912, 81493, 119629, 176549, 258205, 379025, 552280, 807014, 1171959, 1705148, 2468113, 3577332, 5162240, 7455485, 10727083, 15442040, 22157247, 31798821, 45507039, 65124514, 92967787, 132690935 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The number with 2n+1 orderings is the same as the number with 2n orderings (cf. A213332).
LINKS
Thomas C. Craven, An application of Pólya's theory of counting to an enumeration problem arising in quadratic form theory, J. Combin. Theory Ser. A 29 (1980), no. 2, 174--181. MR0583956 (81j:10027).
MAPLE
read transforms;
w:=proc(n) option remember; global did; local v; # did(n, d)=1 if d|n otherwise 0
if n=1 then 1 elif (n mod 2) = 1 then w(n-1);
else v:=n/2;
(1/n)* ( add(2*i*w(i)*did(v, i), i=1..v) +
add( add(2*i*w(i)*w(n-2*k)*did(k, i), i=1..k), k=1..v-1));
fi; end;
[seq(w(2*n), n=1..50)];
CROSSREFS
Cf. A213332.
Sequence in context: A357640 A007865 A052812 * A218153 A319642 A062114
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 08 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 13:44 EDT 2024. Contains 374549 sequences. (Running on oeis4.)