cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A374161 a(n) is the smallest nonnegative integer k where exactly n pairs of positive integers (x, y) exist such that x^2 + 19*y^2 = k.

Original entry on oeis.org

0, 20, 140, 700, 1540, 17500, 7700, 122500, 26180, 53900, 192500, 7035875, 130900, 592900, 4812500, 1347500, 602140, 150062500, 916300
Offset: 0

Views

Author

Seiichi Manyama, Jun 29 2024

Keywords

Crossrefs

Programs

  • Python
    from itertools import count
    from sympy.abc import x,y
    from sympy.solvers.diophantine.diophantine import diop_quadratic
    def A374161(n): return next(m for m in count(0) if sum(1 for d in diop_quadratic(x**2+19*y**2-m) if d[0]>0 and d[1]>0)==n) # Chai Wah Wu, Jun 30 2024