login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A371193
a(n) = 2^(4*n-4)*(2^n-1).
2
0, 1, 48, 1792, 61440, 2031616, 66060288, 2130706432, 68451041280, 2194728288256, 70300024700928, 2250700302057472, 72040001851883520, 2305561534236983296, 73782472695210835968, 2361111183840784678912, 75556710804409716572160, 2417833192485184639860736
OFFSET
0,3
COMMENTS
It appears that 16*a(n) (that is, the sequence 16, 768, 28672, 983040, 32505856, 1056964608, 34091302912, ...) is the number of nonsingular generalized Weierstrass curves over GF(2^n), n>0.
LINKS
Param Parekh, Paavan Parekh, Sourav Deb, and Manish K. Gupta, On the Classification of Weierstrass Elliptic Curves over Z_n, arXiv:2310.11768 [cs.CR], 2023. See Table 1.
PROG
(Python)
def A371193(n): return (1<<n)-1<<(n-1<<2) if n else 0 # Chai Wah Wu, Mar 14 2024
CROSSREFS
Equals A163839 divided by 4.
Cf. A371195.
Sequence in context: A273627 A355998 A288455 * A231450 A152068 A290404
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 14 2024
STATUS
approved