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!)
A374160 a(n) is the smallest nonnegative integer k where exactly n pairs of positive integers (x, y) exist such that x^2 + 11*y^2 = k. 5

%I #22 Jul 01 2024 15:26:55

%S 0,12,60,180,540,1620,2700,8100,12420,20700,37260,1180980,62100,

%T 476100,335340,186300,310500,1822500,558900,53144100,931500,1676700,

%U 4284900,324860625,1925100,4657500,244462860,12854700,8383500

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

%C a(n) is the smallest nonnegative k such that A374017(k) = n.

%C a(30) = 5775300.

%C a(31) = 38564100.

%C a(32) = 9625500.

%C a(33) = 135812700.

%C a(35) = 41917500.

%C a(36) = 17325900.

%C a(37) = 107122500.

%C a(40) = 28876500.

%o (Python)

%o from itertools import count

%o from sympy.abc import x,y

%o from sympy.solvers.diophantine.diophantine import diop_quadratic

%o def A374160(n): return next(m for m in count(0) if sum(1 for d in diop_quadratic(x**2+11*y**2-m) if d[0]>0 and d[1]>0)==n) # _Chai Wah Wu_, Jun 30 2024

%Y Cf. A328151, A343105, A374158, A374159, A374161.

%Y Cf. A374017.

%K nonn,more

%O 0,2

%A _Seiichi Manyama_, Jun 29 2024

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 21 18:17 EDT 2024. Contains 374475 sequences. (Running on oeis4.)