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.

A059899 Primes p such that x^3 = 2 has more than one solution mod p and the sum of the (three) solutions is p.

This page as a plain text file.
%I A059899 #10 Aug 14 2024 08:34:35
%S A059899 31,229,397,439,457,499,601,643,691,727,739,811,919,997,1021,1051,
%T A059899 1093,1327,1459,1657,1699,1753,1933,1999,2113,2179,2203,2251,2281,
%U A059899 2341,2347,2383,2671,2731,2767,2791,2833,2953,2971,3061,3229,3259,3331,3373,3391
%N A059899 Primes p such that x^3 = 2 has more than one solution mod p and the sum of the (three) solutions is p.
%C A059899 Subsequence of A040028 and of A014752, complement of A059914 relative to A014752. Solutions mod p are represented by integers from 0 to p-1.
%H A059899 Robert Israel, <a href="/A059899/b059899.txt">Table of n, a(n) for n = 1..10000</a>
%p A059899 filter:= proc(p) local S;
%p A059899   if not isprime(p) then return false fi;
%p A059899   S:= map(t -> rhs(t[1]), [msolve(x^3=2,p)]);
%p A059899   nops(S) = 3 and convert(S,`+`) = p
%p A059899 end proc:
%p A059899 select(filter, [seq(i,i=7..5000, 6)]); # _Robert Israel_, Aug 13 2024
%Y A059899 Cf. A040028, A014752, A059914.
%K A059899 nonn
%O A059899 1,1
%A A059899 _Klaus Brockhaus_, Mar 02 2001