Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #6 Apr 03 2023 10:36:11
%S 31,41,43,53,61,71,73,83,97,211,311,401,421,431,433,503,521,523,541,
%T 601,613,631,641,643,653,701,733,743,751,761,811,821,823,827,853,857,
%U 863,877,907,911,937,941,947,953,967,971,977,983
%N Primes where the first digit is greater than any other digit.
%H Harvey P. Dale, <a href="/A156299/b156299.txt">Table of n, a(n) for n = 1..1000</a>
%H Chris Caldwell, <a href="https://t5k.org/lists/small/1000.txt">The first 1000 Primes</a>
%e 983 is a prime in which the first digit is greater than any other digit.
%t fdgQ[n_]:=Module[{idn=IntegerDigits[n],f},f=First[idn];Max[idn]==f&&And@@ Table[f>i,{i,Rest[idn]}]]; Select[Prime[Range[5,200]],fdgQ] (* _Harvey P. Dale_, Sep 18 2013 *)
%Y A000040
%K nonn,base
%O 1,1
%A _Parthasarathy Nambi_, Feb 07 2009