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.

Previous Showing 21-24 of 24 results.

A296938 Rational primes that decompose in the field Q(sqrt(17)).

Original entry on oeis.org

2, 13, 19, 43, 47, 53, 59, 67, 83, 89, 101, 103, 127, 137, 149, 151, 157, 179, 191, 223, 229, 239, 251, 257, 263, 271, 281, 293, 307, 331, 349, 353, 359, 373, 383, 389, 409, 421, 433, 443, 457, 461, 463, 467, 491, 509, 523, 557, 563, 569, 577, 587, 593, 599
Offset: 1

Views

Author

N. J. A. Sloane, Dec 26 2017

Keywords

Comments

From Jianing Song, Apr 21 2022: (Start)
Primes p such that kronecker(17, p) = kronecker(p, 17) = 1, where kronecker() is the kronecker symbol. That is to say, primes p that are quadratic residues modulo 17.
Primes p such that p^8 == 1 (mod 17).
Primes p == 1, 2, 4, 8, 9, 13, 15, 16 (mod 17). (End)

Crossrefs

Cf. A011584 (kronecker symbol modulo 17).
Rational primes that decompose in the quadratic field with discriminant D: A139513 (D=-20), A191019 (D=-19), A191018 (D=-15), A296920 (D=-11), A033200 (D=-8), A045386 (D=-7), A002144 (D=-4), A002476 (D=-3), A045468 (D=5), A001132 (D=8), A097933 (D=12), A296937 (D=13), this sequence (D=17).
Cf. A038890 (inert rational primes in the field Q(sqrt(17))).

Programs

A347831 The positive integer moduli a(n) for which the congruence x*(x + 1) == -4 (mod a(n)) is solvable for integer x (representatives from {0, 1, ..., a(n)-1}); in increasing order.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 17, 19, 20, 23, 24, 30, 31, 32, 34, 38, 40, 46, 47, 48, 51, 53, 57, 60, 61, 62, 64, 68, 69, 76, 79, 80, 83, 85, 92, 93, 94, 95, 96, 102, 106, 107, 109, 113, 114, 115, 120, 122, 124, 128, 136, 137, 138, 139, 141, 151, 152, 155, 158, 159, 160, 166, 167, 170, 173, 181
Offset: 1

Views

Author

Wolfdieter Lang, Sep 15 2021

Keywords

Comments

The primes are 3, 5 and those given in A191018 (Jacobi(prime|15) = +1).
For a(n) neither a multiple of 3 nor of 5 the Jacobi(a(n)|15) = +1.
The sequence (a(n)){n >=1} is the set S := {3^a*5^b*Product{j=1..m} (p_j)^{e(j)}}, in increasing order, with a and b from {0, 1}, primes p_j from A191018, m >= 0, and the exponents e(j) >= 0. If a = b = m = 0 then S = {1} and a(1) = 1.
The multiplicity of the (representative) solutions x is 2^m(n) for modulus a(n) from the set S. Thus it is 1 for 1, 3, 5, and a power of 2 with m(n) >= 1. This follows from Jacobi(prime|15) = +1, and the lifting theorem for powers of these primes (see e.g., Apostol). Primes 3 and 5 have only 1 solution and no lifting to powers >= 2 is possible. See A347833 for these multiplicities.
For the solutions x see A347832.

References

  • Tom M. Apostol, Introduction to Analytic Number Theory, Springer-Verlag, 1976, pp 121, 122.

Crossrefs

Programs

  • PARI
    isok(m) = {my(f=factor(m)); for (k=1, #f~, my(p=f[k,1]); if ((p==3) || (p==5), if (f[k,2] > 1, return (0)), if (kronecker(p, 15) != 1, return(0)));); return (1);} \\ Michel Marcus, Oct 23 2021

A191051 Primes p that have Kronecker symbol (p|86) = 1.

Original entry on oeis.org

3, 5, 17, 19, 23, 29, 31, 37, 41, 47, 61, 79, 97, 103, 127, 131, 149, 157, 163, 167, 179, 193, 211, 227, 239, 271, 277, 281, 311, 331, 337, 347, 349, 353, 359, 367, 373, 389, 401, 419, 421, 431, 439, 467, 479, 487, 491, 499, 523, 569, 571, 587, 599, 617, 653
Offset: 1

Views

Author

T. D. Noe, May 25 2011

Keywords

Comments

Originally incorrectly named "primes which are squares mod 86", which is sequence A106891. - M. F. Hasler, Jan 15 2016

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(653) | KroneckerSymbol(p, 86) eq 1]; // Vincenzo Librandi, Sep 11 2012
    
  • Mathematica
    Select[Prime[Range[200]], JacobiSymbol[#,86]==1&]
  • PARI
    select(p->kronecker(p, 86)==1&&isprime(p), [1..1000]) \\ This is to provide a generic characteristic function ("is_A191051") as 1st arg of select(), there are other ways to produce the sequence more efficiently. - M. F. Hasler, Jan 15 2016

Extensions

Definition corrected by M. F. Hasler, Jan 15 2016

A343241 Primes congruent to 2 or 8 modulo 15.

Original entry on oeis.org

2, 17, 23, 47, 53, 83, 107, 113, 137, 167, 173, 197, 227, 233, 257, 263, 293, 317, 347, 353, 383, 443, 467, 503, 557, 563, 587, 593, 617, 647, 653, 677, 683, 743, 773, 797, 827, 857, 863, 887, 947, 953, 977, 983
Offset: 1

Views

Author

Wolfdieter Lang, May 20 2021

Keywords

Comments

This sequence is the complement of A033212 (primes congruent to 1 or 4 mod(15)) relative to the primes p with Jacobi(p|15) = +1 (A191018).
There is neither a solution x of the congruence x^2 == a(n) (mod 3) nor of x^2 == a(n) (mod 5) (the Legendre symbols are -1 in both cases, and Jacobi(a(n)|15) = +1).

Crossrefs

Cf. A033212, A106859 (with 3 and 5), A191018.

Programs

  • Mathematica
    Select[Range[1000], PrimeQ[#] && MemberQ[{2, 8}, Mod[#, 15]] &] (* Amiram Eldar, May 20 2021 *)
Previous Showing 21-24 of 24 results.