[go: up one dir, main page]

login
Revision History for A155715 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Least number expressible as a^2 + k b^2 with positive integers a,b, for each k=1,...,n.
(history; published version)
#6 by Charles R Greathouse IV at Sat Jul 14 11:32:23 EDT 2012
AUTHOR

_M. F. Hasler (www.univ-ag.fr/~mhasler), _, Jan 27 2009

Discussion
Sat Jul 14
11:32
OEIS Server: https://oeis.org/edit/global/1815
#5 by Russ Cox at Fri Mar 30 17:35:01 EDT 2012
COMMENTS

a(n) > 10^9 for n >= 47. [From _Donovan Johnson (donovan.johnson(AT)yahoo.com), _, Sep 29 2009]

EXTENSIONS

a(23)-a(46) and b-file from _Donovan Johnson (donovan.johnson(AT)yahoo.com), _, Sep 29 2009

Discussion
Fri Mar 30
17:35
OEIS Server: https://oeis.org/edit/global/163
#4 by N. J. A. Sloane at Thu Nov 11 07:34:06 EST 2010
LINKS

Donovan Johnson, <a href="/A155715/b155715.txt">Table of n, a(n) for n=1..46</a>

KEYWORD

nonn,new

nonn

#3 by N. J. A. Sloane at Sun Jul 11 03:00:00 EDT 2010
KEYWORD

nonn,new

nonn

AUTHOR

M. F. Hasler (MHasler(AT)www.univ-ag.fr/~mhasler), Jan 27 2009

#2 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
DATA

2, 17, 73, 73, 241, 241, 1009, 1009, 1009, 1009, 7561, 7561, 21961, 32356, 32356, 32356, 44641, 44641, 349924, 349924, 349924, 349924, 1399696, 1399696, 1399696, 3027249, 3027249, 3027249, 4349601, 4349601, 18567396, 18567396, 18567396

COMMENTS

a(n) > 10^9 for n >= 47. [From Donovan Johnson (donovan.johnson(AT)yahoo.com), Sep 29 2009]

LINKS

Donovan Johnson, <a href="b155715.txt">Table of n, a(n) for n=1..46</a>

KEYWORD

more,nonn,new

nonn

EXTENSIONS

a(23)-a(46) and b-file from Donovan Johnson (donovan.johnson(AT)yahoo.com), Sep 29 2009

#1 by N. J. A. Sloane at Fri Feb 27 03:00:00 EST 2009
NAME

Least number expressible as a^2 + k b^2 with positive integers a,b, for each k=1,...,n.

DATA

2, 17, 73, 73, 241, 241, 1009, 1009, 1009, 1009, 7561, 7561, 21961, 32356, 32356, 32356, 44641, 44641, 349924, 349924, 349924, 349924

OFFSET

1,1

COMMENTS

Sequence A028372 considers primes with this property, but allowing for nonzero a,b (which obviously is irrelevant for n>2). Up to n=13, the terms of the present sequence are prime without imposing it explicitely and thus coincide with A028372 except for n=2.

EXAMPLE

a(1) = 2 = 1^2 + 1^2 is the least number of the sequence A000404 (sum of positive squares). a(2) = 17 = 1^2 + 4^2 = 3^2 + 2*2^2 is the least number in sequence A000404 to be in sequence A154777 (a^2+2b^2)as well. a(3) = 73 = 3^2 + 8^2 = 1^2 + 2*6^2 = 5^2 + 3*4^2 is the least number in the intersection of sequences A000404, A154777 and A092572 (a^2+3b^2).

PROG

(PARI) k=1; for( n=1, 10^9, forstep( c=k, 1, -1, for( b=1, sqrtint((n-1)\c), issquare(n-c*b^2) & next(2)); next(2)); print1(n", "); k++; n--)

KEYWORD

more,nonn

AUTHOR

M. F. Hasler (MHasler(AT)univ-ag.fr), Jan 27 2009

STATUS

approved