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.

A156299 Primes where the first digit is greater than any other digit.

Original entry on oeis.org

31, 41, 43, 53, 61, 71, 73, 83, 97, 211, 311, 401, 421, 431, 433, 503, 521, 523, 541, 601, 613, 631, 641, 643, 653, 701, 733, 743, 751, 761, 811, 821, 823, 827, 853, 857, 863, 877, 907, 911, 937, 941, 947, 953, 967, 971, 977, 983
Offset: 1

Views

Author

Parthasarathy Nambi, Feb 07 2009

Keywords

Examples

			983 is a prime in which the first digit is greater than any other digit.
		

Crossrefs

Programs

  • Mathematica
    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 *)