login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A230084 Smallest of three consecutive primes whose product of digits is equal and nonzero. 3
442619, 2483219, 6325619, 7567919, 7886519, 9883673, 9962219, 11117123, 14669519, 15446819, 17958419, 21337279, 23623129, 26453671, 26872919, 27234419, 27536519, 27948343, 32638213, 32964341, 33539783, 33813419, 34277819, 34554719, 35732381, 37571519 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
442619 is in the sequence because 442619,442633 and 442691 are consecutive primes and the product of the digits of each = 1728.
MATHEMATICA
a = {}; m = 1; s = 1; Do[ If[(y = Apply[Times, IntegerDigits[x = Prime[n]]]) == s && s != 0, m = m + 1; If[m > 2, AppendTo[a, Prime[n - 2]]], m = 1]; s = y, {n, 1, 100000}]; a
Transpose[Select[Partition[Prime[Range[23*10^5]], 3, 1], Times@@ IntegerDigits[ #[[1]]]==Times@@IntegerDigits[#[[2]]] == Times@@ IntegerDigits[#[[3]]]>0&]][[1]] (* Harvey P. Dale, Apr 05 2016 *)
pdeQ[{a_, b_, c_}]:=Module[{un=Union[Times@@@IntegerDigits[{a, b, c}]]}, un != {0} && Length[un]==1]; Select[Partition[Prime[Range[23*10^5]], 3, 1], pdeQ][[All, 1]] (* Harvey P. Dale, Feb 01 2022 *)
CROSSREFS
Sequence in context: A294987 A350334 A287581 * A250839 A270610 A224634
KEYWORD
nonn,base
AUTHOR
Shyam Sunder Gupta, Oct 08 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 7 22:43 EDT 2024. Contains 375018 sequences. (Running on oeis4.)