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.
%I A115078 #20 May 11 2023 12:44:36 %S A115078 171,290,2145,3381,74613,10664845620,14771330561681694, %T A115078 2744819721528289762500 %N A115078 Numbers k such that k = prime(1 + d_1)*prime(1 + d_2)*...*prime(1 + d_m), where d_1 d_2 ... d_m is the decimal expansion of k. %C A115078 a(9), if it exists, must have more than 32 digits. %C A115078 a(9) > 10^37 if it exists. - _Chai Wah Wu_, Aug 12 2017 %e A115078 290 is a term because 290 = p(1+2)*p(1+9)*p(1+0) = 5*29*2. %t A115078 t={};Do[If[n==Times@@Prime[1+IntegerDigits@n], Print[n];AppendTo[t, n]], {n, 10^5}];t %o A115078 (PARI) is(n) = my(d=digits(n)); n==prod(i=1, #d, prime(1+d[i])) \\ _Felix Fröhlich_, Aug 12 2017 %Y A115078 Cf. A097227. %Y A115078 Fixed points of A359802. %K A115078 base,nonn,more %O A115078 1,1 %A A115078 _Giovanni Resta_, Jan 12 2006