A230041 Primes related to the strictly increasing subsequence of A053666.
2, 3, 5, 7, 19, 29, 37, 47, 59, 79, 89, 199, 269, 359, 379, 389, 479, 499, 599, 797, 887, 997, 1889, 1999, 2689, 2699, 2789, 2999, 3889, 3989, 4789, 4799, 4889, 4999, 6899, 8999, 25999, 27799, 28789, 28979, 29989, 37799, 37889, 39799, 39989, 48799, 48889
Offset: 1
Examples
a(6) = 29, product of digits is 18; a(7) = 37, product of digits is 21 and 21 > 18.
Links
- Shyam Sunder Gupta, Table of n, a(n) for n = 1..142
Programs
-
Mathematica
a = {}; t = 0; Do[s = Apply[Times, IntegerDigits[Prime[n]]]; If[s > t, t = s; AppendTo[a, Prime[n]]], {n, 1, 10^4}]; a
Comments