The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A117388 a(n) is the smallest n-digit integer such that, if all numbers formed by inserting the exponentiation symbol between any two digits are added up, the sum is prime. 2
21, 121, 1226, 14423, 111334, 1186896 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
No zeros are allowed in the decimal representation of a(n).
LINKS
EXAMPLE
a(5) = 14423 since 1^4423+14^423+144^23+1442^3 is prime.
MATHEMATICA
(* first do *) Needs["DiscreteMath`Combinatorica`"] (* then *) f[n_] := Block[{k = (10^n - 1)/9}, While[id = IntegerDigits@k; First@ Union@ id == 0 || !PrimeQ[Plus @@ Table[FromDigits@ Take[id, {1, k}]^FromDigits@ Take[id, {k + 1, n}], {k, n - 1}]], k++ ]; k]; Do[Print[f[n]] // Timing, {n, 2, 7}] (* Robert G. Wilson v, Apr 27 2006 *)
PROG
(Python)
from sympy import isprime
from itertools import product
def a(n):
for p in product("123456789", repeat=n):
s = "".join(p)
if isprime(sum(int(s[:i])**int(s[i:]) for i in range(1, n))):
return int(s)
print([a(n) for n in range(2, 6)]) # Michael S. Branicky, Jun 27 2022
CROSSREFS
Cf. A113762.
Sequence in context: A179441 A164785 A179956 * A053052 A243882 A002299
KEYWORD
base,more,nonn
AUTHOR
Ray G. Opao, Apr 25 2006
EXTENSIONS
a(6) from Robert G. Wilson v and Farideh Firoozbakht, Apr 27 2006
a(7) from Sean A. Irvine, Dec 15 2009
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 May 21 22:16 EDT 2024. Contains 372741 sequences. (Running on oeis4.)