login

Revision History for A139508

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Primes of the form x^2 + 28x*y + y^2 for x and y nonnegative.
(history; published version)
#8 by N. J. A. Sloane at Thu Jun 19 15:30:30 EDT 2014
STATUS

editing

approved

#7 by N. J. A. Sloane at Thu Jun 19 15:30:28 EDT 2014
LINKS

N. J. A. Sloane et al., <a href="https://oeis.org/wiki/Binary_Quadratic_Forms_and_OEIS">Binary Quadratic Forms and OEIS</a> (Index to related sequences, programs, references)

STATUS

approved

editing

#6 by Joerg Arndt at Sun Oct 13 06:31:05 EDT 2013
STATUS

editing

approved

#5 by Joerg Arndt at Sun Oct 13 06:31:01 EDT 2013
COMMENTS

In base 12, the sequence is 51, 131, 421, 591, 751, 881, 971, 9E1, E21, E31, 1011, 1211, 1261, 1301, 1431, 1471, 1561, 1981, 1X01, 1X11, 1XE1, 2191, 2221, 23E1, 2571, 2771, 28X1, 2941, 2991, 2X61, 3021, 3081, 3241, 3291, 3321, 33E1, 3451, 3791, 3821, 3871, 3941, 3X71, 3E51, where X is 10 and E is 11. Moreover, the discriminant is 550. Keep in mind that 12 is a canonical base for mathematics in general since any prime greater than 3 is of the form 6k+-1, any prime of the form 4k+1 is a sum of squares while any prime of the form 4k+3 is never a sum of squares and lcm(6,4)=12. - Walter Kehowski, Jun 01 2008

STATUS

approved

editing

#4 by Russ Cox at Sat Mar 31 14:39:48 EDT 2012
COMMENTS

In base 12, the sequence is 51, 131, 421, 591, 751, 881, 971, 9E1, E21, E31, 1011, 1211, 1261, 1301, 1431, 1471, 1561, 1981, 1X01, 1X11, 1XE1, 2191, 2221, 23E1, 2571, 2771, 28X1, 2941, 2991, 2X61, 3021, 3081, 3241, 3291, 3321, 33E1, 3451, 3791, 3821, 3871, 3941, 3X71, 3E51, where X is 10 and E is 11. Moreover, the discriminant is 550. Keep in mind that 12 is a canonical base for mathematics in general since any prime greater than 3 is of the form 6k+-1, any prime of the form 4k+1 is a sum of squares while any prime of the form 4k+3 is never a sum of squares and lcm(6,4)=12. - _Walter A. Kehowski (wkehowski(AT)cox.net), _, Jun 01 2008

Discussion
Sat Mar 31
14:39
OEIS Server: https://oeis.org/edit/global/934
#3 by Russ Cox at Sat Mar 31 10:22:09 EDT 2012
AUTHOR

_Artur Jasinski (grafix(AT)csl.pl), _, Apr 24 2008

Discussion
Sat Mar 31
10:22
OEIS Server: https://oeis.org/edit/global/339
#2 by N. J. A. Sloane at Fri Feb 27 03:00:00 EST 2009
COMMENTS

In base 12, the sequence is 51, 131, 421, 591, 751, 881, 971, 9E1, E21, E31, 1011, 1211, 1261, 1301, 1431, 1471, 1561, 1981, 1X01, 1X11, 1XE1, 2191, 2221, 23E1, 2571, 2771, 28X1, 2941, 2991, 2X61, 3021, 3081, 3241, 3291, 3321, 33E1, 3451, 3791, 3821, 3871, 3941, 3X71, 3E51, where X is 10 and E is 11. Moreover, the discriminant is 550. Keep in mind that 12 is a canonical base for mathematics in general since any prime greater than 3 is of the form 6k+-1, any prime of the form 4k+1 is a sum of squares while any prime of the form 4k+3 is never a sum of squares, and lcm(6,4)=12. - Walter A. Kehowski (wkehowski(AT)cox.net), Jun 01 2008

KEYWORD

nonn,new

nonn

#1 by N. J. A. Sloane at Sun Jun 29 03:00:00 EDT 2008
NAME

Primes of the form x^2 + 28x*y + y^2 for x and y nonnegative.

DATA

61, 181, 601, 829, 1069, 1249, 1381, 1429, 1609, 1621, 1741, 2029, 2089, 2161, 2341, 2389, 2521, 3121, 3169, 3181, 3301, 3709, 3769, 4021, 4261, 4549, 4729, 4801, 4861, 4969, 5209, 5281, 5521, 5581, 5641, 5749, 5821, 6301, 6361, 6421, 6529, 6709, 6829

OFFSET

1,1

COMMENTS

In base 12, the sequence is 51, 131, 421, 591, 751, 881, 971, 9E1, E21, E31, 1011, 1211, 1261, 1301, 1431, 1471, 1561, 1981, 1X01, 1X11, 1XE1, 2191, 2221, 23E1, 2571, 2771, 28X1, 2941, 2991, 2X61, 3021, 3081, 3241, 3291, 3321, 33E1, 3451, 3791, 3821, 3871, 3941, 3X71, 3E51, where X is 10 and E is 11. Moreover, the discriminant is 550. Keep in mind that 12 is a canonical base for mathematics in general since any prime greater than 3 is of the form 6k+-1, any prime of the form 4k+1 is a sum of squares while any prime of the form 4k+3 is never a sum of squares, and lcm(6,4)=12. - Walter A. Kehowski (wkehowski(AT)cox.net), Jun 01 2008

MATHEMATICA

a = {}; w = 28; k = 1; Do[Do[If[PrimeQ[n^2 + w*n*m + k*m^2], AppendTo[a, n^2 + w*n*m + k*m^2]], {n, m, 400}], {m, 1, 400}]; Union[a] (*Artur Jasinski*)

KEYWORD

nonn,new

AUTHOR

Artur Jasinski (grafix(AT)csl.pl), Apr 24 2008

STATUS

approved