The program that will find the next prime number

15

1

Intro:


You accidentally corrupted the flow of time with a device you made for fun, that turned out to be a time machine. As a result, you got pushed to the far future. You realized that computing, processing power, and computers in general have been evolved by a huge amount, an infinite amount to be precise. So you grab yourself a computer with infinite memory and processing power. You have no idea how it can have infinite memory and infinite processing power, but you just accept it and return to the present.

Challenge:


You heard that the person who discovered the currently largest prime 2^74,207,281 − 1 got paid $100.000. You decide to make a program that finds the next prime, since you want to get back the money you spent for the computer. You make one that takes input of a number, and finds the next prime number, either by bruteforcing or any other method.

Clarifications: You have a hypothetical machine with infinite memory and processing power. Your program MUST NOT be limited (e.g.: C#'s int's can store from -2,147,483,648 to 2,147,483,647), well your program must be able to store, and work with any number of any size. You have infinite resources, so you shouldnt care if you would run out of memory if you allowed that.

Example I/O:
Input: The currently largest discovered prime with 22,338,618 digits.
Output: Exactly the next prime

Obviously, you dont have to prove that it works, as it would take a ton of time to compute in a physical machine. But if you moved your program to a hypothetical machine with infinite processing power / memory, it should compute instantly.


Finding the next prime and checking if a number is a prime, are two completely different things

P. Ktinos

Posted 2017-01-29T10:32:40.973

Reputation: 2 742

1Does it have to specifically be the next prime? Lots of prime searching algorithms for large primes only search certain types of numbers and therefore sometimes miss out primes... – FlipTack – 2017-01-29T10:34:41.090

Yes it has to be exactly the next prime @FlipTack. Not the next mersenne prime or anything. This is why I advised bruteforcing, (due to infinite resources, it would be ideal) but any algorithm is fine, as long as it finds the next prime. – P. Ktinos – 2017-01-29T10:35:40.620

Does the program have to validate that the input is actually a prime? Or can we just get the next prime after any input? – theonlygusti – 2017-01-29T13:38:08.263

@theonlygusti It doesnt have to validate inputs primality. – P. Ktinos – 2017-01-29T14:16:33.073

10I think you should add some serious test cases. – FlipTack – 2017-01-29T16:20:57.517

3"Your program MUST NOT be limited" but on the basis of the example I suspect that every single language in existence counts as limited if fit no other reason than using a finite type to address memory. – Peter Taylor – 2017-01-29T17:18:31.717

Side note: there isn't a $100,000 bounty for every new world-record prime—only a few benchmarks, like the first prime found with a million digits. See mersenne.org – Greg Martin – 2017-01-29T18:30:38.140

Weird, there's not a single Lisp answer to this question... – bright-star – 2017-01-29T19:26:19.233

How is this different from the primality test question? Any reasonable method is just going to be a fairly simple wrapper of the original or a builtin. – Post Rock Garf Hunter – 2017-01-30T02:31:25.113

How would this be tested anyway? No machines have infinite resources. – NoOneIsHere – 2017-01-30T03:00:02.013

Downvoting because I don't get the point of the challenge. Is it about finding the next prime number (trivial, and it has been done before) or manipulating large numbers in the context of prime number searching? It looks like none of the answers actually adresses this latter issue (which looks like the interestingone to me) - maybe because the question is unclear – drolex – 2017-01-30T08:48:39.340

If there were a machine with infinite processing power and memory it could instantly calculate the next prime with any program that actually works. There would no point in making programs either small or efficient any more, indeed, I suspect that in such a universe computers would be so cheap that I'd have better things to do than try to recoup the cost of one. I assume this is the case in your example, where a stick of gum may cost $100,000. I'd probably just ask a nearby computer to project all the great entertainment I missed into my mind before I notice my family have all died. – Jodrell – 2017-01-30T16:36:28.227

1

Possible duplicate of Is this number a prime?

– Post Rock Garf Hunter – 2017-01-30T16:47:03.710

@WheatWizard No way. Finding the next prime is different. – mbomb007 – 2017-01-30T17:08:16.983

2@mbomb007 why? All of the answers except the builtin ones seen to just add an extra wrapper. – Post Rock Garf Hunter – 2017-01-30T17:13:13.207

So does pretty much any question tagged with [prime]. – mbomb007 – 2017-01-30T17:15:22.697

For all the "wtf there isnt any biggest prime number"-esque edits, the title obviously meant "next currently known biggest prime number so your sarcasm is not valid here :) – P. Ktinos – 2017-02-01T12:27:12.077

Answers

22

Mathematica, 9 bytes

NextPrime

Greg Martin

Posted 2017-01-29T10:32:40.973

Reputation: 13 940

... Does this actually work? – wizzwizz4 – 2017-01-29T15:40:22.510

12Of course, Mathematica always has a builtin – JungHwan Min – 2017-01-29T15:41:21.687

@wizzwizz4, sure, Try it online!

– Pavel – 2017-01-29T18:23:40.660

8

Python 3, 45 bytes

f=lambda n,k=1,m=1:m%k*k>n or-~f(n,k+1,m*k*k)

Try it online!

Dennis

Posted 2017-01-29T10:32:40.973

Reputation: 196 637

3I believe this is Wilson's Theorem in disguise. k is equal to the final result, m contains (k-1)!^2. Since (k-1)! = -1 mod k only holds when k is prime, we have (k-1)!(k-1)! = 1 mod k, which when multiplied by k will be k itself. You calculate the square to get rid of the only exception of (k-1)! = 0 mod k for composite k, which occurs for k = 4. Correct? – orlp – 2017-01-29T14:44:07.123

Yes, that is correct. – Dennis – 2017-01-29T14:48:24.517

This throws RecursionError: maximum recursion depth exceeded in comparison for f(1000) – ovs – 2017-01-29T16:12:50.830

5@ovs The question says we have infinite memory. Therefore we can assume an infinitely high recursion depth limit, and thus not worry about RecursionError. – FlipTack – 2017-01-29T16:15:53.697

6

Python 2, 78 77 76 74 bytes

def f(n):
 while 1:
    n+=1
    if[i for i in range(1,n)if n%i<1]==[1]:return n

-1 byte thanks to @KritixiLithos
-1 byte thanks to @FlipTack
-2 bytes thanks to @ElPedro

ovs

Posted 2017-01-29T10:32:40.973

Reputation: 21 408

n%i<1 is shorter than n%i==0 – user41805 – 2017-01-29T11:39:31.483

You don't need whitespace after that if. – FlipTack – 2017-01-29T11:58:36.510

I think you mean <1 – Jonathan Allan – 2017-01-29T12:05:15.427

I think you can use a tab instead of 2 spaces for the second level indents but I can't test at the moment. – ElPedro – 2017-01-29T14:21:42.800

1@ElPedro is right. You can change the 2 spaces in front of n+=1 and if into tabs and save 2 bytes – None – 2017-01-29T15:44:26.723

Sorry @ovs. I'm still predominantly Python 2 so wasn't aware of that. Will remember for next time :-) – ElPedro – 2017-01-29T16:07:30.217

5

Jelly, 2 bytes

Æn

Try it online!

This implicitly takes input z and, according to the manual, generate the closest prime strictly greater than z.

steenbergh

Posted 2017-01-29T10:32:40.973

Reputation: 7 772

4

Oasis, 2 bytes

Run with the -n flag.

Code:

p

Try it online!

Adnan

Posted 2017-01-29T10:32:40.973

Reputation: 41 965

4

Bash + coreutils, 52 bytes

for((n=$1,n++;`factor $n|wc -w`-2;n++)){ :;};echo $n

Try it online!

The documentation for bash and factor do not specify a maximum integer value they can handle (although, in practice, each implementation does have a maximum integer value). Presumably, in the GNU of the future on your infinitely large machines, bash and factor will have unlimited size integers.

Mitchell Spector

Posted 2017-01-29T10:32:40.973

Reputation: 3 392

Actually the docs do specify for factor that if built without gnu mp only single-precision is supported. – Dani_l – 2017-01-29T15:44:12.613

1@Dani_l Well, the man entry for bash only says: "Evaluation is done in fixed-width integers with no check for overflow, though division by 0 is trapped and flagged as an error." It doesn't specify the width. (As I recall, the stock implementations of bash on my machines use 64-bit signed integers, but I can't check right now.) As for factor, it will surely be updated: the OP's future computers with infinite resources will have factor compiled with gnu_up to get unlimited precision :). – Mitchell Spector – 2017-01-29T17:05:30.597

3

Maxima, 10 bytes

next_prime

A function returns the smallest prime bigger than its argument.

rahnema1

Posted 2017-01-29T10:32:40.973

Reputation: 5 435

3

Python with sympy, 28 bytes

import sympy
sympy.nextprime

sympy.nextprime is a function which does what it says on the tin. Works for all floats.

repl.it


Python, 66 59 bytes

-4 bytes thanks to Lynn (use -~)
-3 bytes thanks to FlipTack (use and and or, allowing ...==1 to be switched to a ...-1 condition.)

f=lambda n:sum(-~n%-~i<1for i in range(n))-1and f(n+1)or-~n

repl.it

A recursive function that counts up from n until a prime is found by testing that only one number exists up to n-1 that divides it (i.e. 1). Works for all integers, raises an error for floats.

Works on 2.7.8 and 3.5.2, does not work on 3.3.3 (syntax error due to lack of space between ==1 and else)

Jonathan Allan

Posted 2017-01-29T10:32:40.973

Reputation: 67 804

(n+1)%(i+1) is -~n%-~i, I think. – Lynn – 2017-01-29T12:44:36.283

It is, thanks... I was trying to do a shorter one using Wilson's theorem. – Jonathan Allan – 2017-01-29T12:48:40.737

Does short circuiting and/or work, such as f=lambda n:sum(-~n%-~i<1for i in range(n))==1and-~n or f(n+1)? – FlipTack – 2017-01-29T16:18:58.840

In fact, that ^ can be golfed to f=lambda n:sum(-~n%-~i<1for i in range(n))-1and f(n+1)or-~n – FlipTack – 2017-01-29T16:20:18.203

@FlipTack I originally avoided them so it could pass through zero, but it'll work - that's a three byte save! – Jonathan Allan – 2017-01-30T00:28:01.460

3

Brachylog, 2 bytes

<ṗ

Try it online!

Explanation

(?) <   (.)      Input < Output
      ṗ (.)      Output is prime
                 (Implicit labelization of the Output at the end of the predicate)

Fatalize

Posted 2017-01-29T10:32:40.973

Reputation: 32 976

2

Pyke, 8 7 bytes

~p#Q>)h

Try it here!

4 bytes, noncompeting

(Interpreter updated since challenge posted)

~p<h

Try it here!

~p   -   primes_iterator()
  <  -  filter(^, input() < i)
   h - ^[0]

Blue

Posted 2017-01-29T10:32:40.973

Reputation: 26 661

Why's the second noncompeting? I don't understand enough. – theonlygusti – 2017-01-29T13:39:14.810

@theonlygusti: Typically, the only legitimate reason to mark a submission noncompeting here (as opposed to not submitting it at all) is because you fixed a bug or added a feature in the language the program's written in, and that helped you with the challenge. (I tend to write it as "language postdates challenge" to be more clear.) – None – 2017-01-29T15:48:29.370

@theonlygusti clarified – Blue – 2017-01-29T15:58:05.353

2

Python, 114 83 bytes

def g(b):
 while 1:
  b+=1
  for i in range(2,b):
   if b%i<1:break
  else:return b

Without builtins, if there are any.

-30 by removing whitespace and -1 by changing b%i==0 to b%i<1

sagiksp

Posted 2017-01-29T10:32:40.973

Reputation: 1 249

3This won't find the next prime if you put in 1 – FlipTack – 2017-01-29T11:07:22.230

It now assumes that b>2 – sagiksp – 2017-01-29T11:49:46.783

You can't just make up your own rules... you need to follow the challenge specification. Nowhere does it say that you can assume the bounds of the input. – FlipTack – 2017-01-29T11:56:48.770

Even with that assumption, this fails for all even valued inputs. – FlipTack – 2017-01-29T11:57:10.970

I'm an idiot, i misread it. Fixed it. @FlipTack – sagiksp – 2017-01-29T12:06:42.940

you can use spaces for single indents and tabs for double indents to save bytes – Post Rock Garf Hunter – 2017-01-29T13:22:26.053

2

Perl 6, 25 bytes

{first *.is-prime,$_^..*}

How it works

{                       }  # A lambda.
                  $_ ..*   # Range from the lambda argument to infinity,
                    ^      # not including the start point.
 first           ,         # Iterate the range and return the first number which
       *.is-prime          # is prime.

Perl 6, 32 bytes

{first {all $_ X%2..^$_},$_^..*}

With inefficient custom primality testing.

How it works

Outer structure is the same as above, but the predicate passed to first (to decide if a given number is prime), is now:

{               }  # A lambda.
     $_            # Lambda argument (number to be tested).
          2..^$_   # Range from 2 to the argument, excluding the end-point.
        X          # Cartesian product of the two,
         %         # with the modulo operator applied to each pair.
 all               # Return True if all the modulo results are truthy (i.e. non-0).

smls

Posted 2017-01-29T10:32:40.973

Reputation: 4 352

I was hoping to get something shorter with Perl 5 but it's hard to beat a built-in .is-prime ;)

– Zaid – 2017-01-30T18:17:55.600

1

J, 4 bytes

4&p:

Simple built in for next prime.

Conor O'Brien

Posted 2017-01-29T10:32:40.973

Reputation: 36 228

1

05AB1E, 16 13 bytes (Emigna @ -3 bytes)

2•7£?ÿ•o[>Dp#

Try it online!

2•7£?ÿ•o        # Push current largest prime.
        [   #    # Until true..
         >Dp    # Increment by 1, store, check primality.
                # After infinite loop, implicitly return next prime.

Magic Octopus Urn

Posted 2017-01-29T10:32:40.973

Reputation: 19 422

Wouldn't [>Dp# work? – Emigna – 2017-01-30T16:14:03.507

You can still cut 8 more bytes as the program should take a prime as input and output the next prime. – Emigna – 2017-01-30T17:28:42.460

@Emigna then this question is a duplicate. – Magic Octopus Urn – 2017-01-30T17:34:20.213

That is probable yes. – Emigna – 2017-01-30T17:35:33.483

1

Java 7, 373 343 334 303 268 bytes

import java.math.*;class M{public static void main(String[]a){BigInteger n,i,o,r=new BigInteger(a[0]);for(r=r.add(o=r.ONE);;r=r.add(o)){for(n=r,i=o.add(o);i.compareTo(n)<0;n=n.mod(i).compareTo(o)<0?r.ZERO:n,i=i.add(o));if(n.compareTo(o)>0)break;}System.out.print(r);}}

-75 bytes thanks @Poke

Ungolfed:

import java.math.*;
class M{
  public static void main(String[] a){
    BigInteger n,
               i,
               o,
               r = new BigInteger(a[0]);
    for(r = r.add(o = r.ONE); ; r = r.add(o)){
      for(n = r, i = o.add(o); i.compareTo(n) < 0; n = n.mod(i).compareTo(o)< 0
                                                        ? r.ZERO
                                                        : n,
                                                   i = i.add(o));
      if(n.compareTo(o) > 0){
        break;
      }
    }
    System.out.print(r);
  }
}

Try it here.

Some example input/outputs:

7 -> 11
1609 -> 1613
104723 -> 104729

Kevin Cruijssen

Posted 2017-01-29T10:32:40.973

Reputation: 67 575

@Poke I've golfed another 31 bytes by adding static for the field and method p, but removing method c and p's parameter. – Kevin Cruijssen – 2017-02-01T16:18:00.440

1

Perl, 30 bytes (29 +1 for -p):

(1x++$_)=~/^(11+?)\1+$/&&redo

Usage

Input the number after pressing return (input 12345 in example below, outputs 12347):

$ perl -pe '(1x++$_)=~/^(11+?)\1+$/&&redo'
12345
12347

How it works

  • Define a string of 1's that has length ++$_, where $_ is initially the input value
  • The regex checks to see if the string of 1s is non-prime length (explained here).
  • If the string length is non-prime, the check is re-evaluated for the next integer (++$_)
  • If the string length is prime, the implicit while loop exits and -p prints the value of $_
  • Note: there is no need to handle the edge case "1" of length 1 because it will never be used for values less than 1, per the specification.

Zaid

Posted 2017-01-29T10:32:40.973

Reputation: 1 015

0

QBIC, 34 bytes

:{a=a+1[2,a/2|~a%b=0|b=a]]~a<b|_Xa

Based off this QBIC primality tester. Explanation:

:{a=a+1    Read 'a' from the command line, start an infinite loop 
           and at the start of each iteration increment 'a'
[2,a/2|    FOR b = 2, b <= a/2, b++
~a%b=0|    IF b cleanly divides a, we're no prime
b=a]]      so, break out of the FOR loop ( ]] = End if, NEXT )
~a<b|      If the FOR loop completed without breaking
_Xa        then quit, printing the currently tested (prime) number
           The second IF and the DO-loop are implicitly closed by QBIC.

steenbergh

Posted 2017-01-29T10:32:40.973

Reputation: 7 772

0

JavaScript (ES7), 61 bytes

a=>{for(;a++;){for(c=0,b=2;b<a;b++)a%b||c++;if(!c)return a;}}

Usage

f=a=>{for(;a++;){for(c=0,b=2;b<a;b++)a%b||c++;if(!c)return a;}}
f(2)

Output

3

Luke

Posted 2017-01-29T10:32:40.973

Reputation: 4 675

Nice, but I don't think this will work, as JavaScript itself (not the computer) will lose precision after just 2^53. – ETHproductions – 2017-01-29T13:24:17.503

You're right, but I don't think that limit can be avoided, even if we split the number up in portions of 32 bits in an array, because eventually, the number needs to be processed as a whole. If you do have an idea on how to solve this, please let me know. – Luke – 2017-01-29T13:40:01.050

1There are JS libraries for arbitrary-precision math--I even built one at some point--so I'm certain it's possible. I'll have a go the next time I'm at my computer – ETHproductions – 2017-01-29T14:22:39.673

I did some googling, and it seems interesting. I'll have a shot at it too. – Luke – 2017-01-29T16:00:07.603

0

MATL, 3 bytes

_Yq 

The function Yq returns the next prime of the absolute value of the input if the input is negative so we implicitly grab the input, negate it (_) and find the next prime using Yq.

Try it Online!

Suever

Posted 2017-01-29T10:32:40.973

Reputation: 10 257

0

Haskell, 42 46 43 bytes

f n=[i|i<-[n..],all((>0).rem i)[2..i-1]]!!1

the usual code for brute force.

Of course this finds the next smallest prime number after n. There is no biggest prime.

Works for n > 0.

edit: Assumes n is prime. Thanks to @Laikoni's advice in the comments.

Will Ness

Posted 2017-01-29T10:32:40.973

Reputation: 352

You can save a byte by replacing head[...] with [...]!!0. However I think one can assume that n is prime, so you can use [n..] instead of [n+1..] and then take the second element with [...]!!1. – Laikoni – 2017-01-29T18:21:55.760

0

Python + primefac, 34 32 bytes

Not quite as short as using sympy (another answer already uses that), but it's still pretty short, and it's much faster.

import primefac as p
p.nextprime

Try it online

Input of 2**2000 completes in a couple seconds.

mbomb007

Posted 2017-01-29T10:32:40.973

Reputation: 21 944

0

SimpleTemplate, 132 bytes

The algorithm is terrible, since I have to do my own code to check if a number is prime or not.
It proved to be horrible, but works.

{@setY argv.0}{@setX 1}{@whileX}{@setX}{@set+T Y,-1}{@for_ from2 toT}{@ifY is multiple_}{@incX}{@/}{@/}{@ifX}{@incY}{@/}{@/}{@echoY}

Receives the number as the first argument, outputting the result.


Ungolfed:

{@set number argv.0}
{@set remainder 1}
{@while remainder}
    {@set remainder 0}
    {@set+ tmp number, -1}
    {@for divisor from 2 to tmp}
        {@if number is multiple divisor}
            {@inc by 1 remainder}
        {@/}
    {@/}
    {@if remainder}
        {@inc by 1 number}
    {@/}
{@/}
{@echo number}

Any tips on how to remove that last @if?

Ismael Miguel

Posted 2017-01-29T10:32:40.973

Reputation: 6 797

0

Lua, 876 Bytes

function I(a)a.s=a.s:gsub("(%d)(9*)$",function(n,k)return tostring(tonumber(n)+1)..("0"):rep(#k)end)end function D(a)a.s=a.s:gsub("(%d)(0*)$",function(n,k)return tostring(tonumber(n)-1)..("9"):rep(#k)end):gsub("^0+(%d)","%1")end function m(a,b)local A=K(a)local B=K(b)while V(0,B)do D(A)D(B)end return A end function M(a,b)local A=K(a)local B=K(b)while V(m(B,1),A)do A=m(A,B)end return A end function l(n)return#n.s end function p(a)local A=K(a)local i=K(2)while V(i,A)do if V(M(A,i),1)then return false end I(i)end return true end function V(b,a)A=K(a)B=K(b)if l(A)>l(B)then return true end if l(B)>l(A)then return false end for i=1,l(A)do c=A.s:sub(i,i)j=B.s:sub(i,i)if c>j then return true elseif c<j then return false end end return false end function K(n)if(type(n)=='table')then return{s=n.s}end return{s=tostring(n)}end P=K(io.read("*n"))repeat I(P)until p(P)print(P.s)

Lua, unlike some other languages, does have a Maximum Integer Size. Once a number gets larger than 232, things stop working correctly, and Lua starts trying to make estimates instead of exact values.

As such, I had to implement a new method of storing numbers, in particular, I've stored them as Base10 strings, because Lua doesn't have a size limit on Strings, other than the size of the memory.

I feel this answer is much more to the Spirit of the question, as it has to itself implement arbitrary precision integers, as well as a prime test.

Explained

-- String Math
_num = {}

_num.__index = _num

-- Increase a by one.
-- This works by grabbing ([0-9])999...$ from the string.
-- Then, increases the first digit in that match, and changes all the nines to zero.
-- "13", only the "3" is matched, and it increases to 1.
-- "19", firstly the 1 is turned to a 2, and then the 9 is changed to a 0.
-- "9" however, the 9 is the last digit matched, so it changes to "10"
function _num.inc(a)
    a.str = a.str:gsub("(%d)(9*)$",function(num,nines)
            return tostring(tonumber(num)+1)..("0"):rep(#nines)
        end)
end


-- Decrease a by one
-- Much like inc, however, uses ([0-9])0...$ instead.
-- Decrements ([0-9]) by one and sets 0... to 9...
-- "13" only the "3" is matched, and it decreases by one.
-- "10", the "1" is matched by the ([0-9]), and the 0 is matched by the 0..., which gives 09, which is clipped to 9.
function _num.dec(a)
    a.str = a.str:gsub("(%d)(0*)$",function(num,zeros)
        return tostring(tonumber(num)-1)..("9"):rep(#zeros)
    end)         :gsub("^0+(%d)","%1")
end

-- Adds a and b
-- Makes A and B, so that the original values aren't modified.
-- B is then decremented until it hits 0, and A is incremented.
-- A is then returned.
function _num.__add(a,b)
    local A = str_num(a)
    local B = str_num(b)
    while B > 0 do
        A:inc()
        B:dec()
    end
    return A
end

-- Subs b from a
-- Works just like Addition, yet Dec's A instead of Incs.
function _num.__sub(a,b)
    local A = str_num(a)
    local B = str_num(b)
    while B > 0 do
        A:dec()
        B:dec()
    end
    return A
end

-- A % B
-- Makes A and B from a and b
-- Constantly subtracts B from A until A is less than B
function _num.__mod(a,b)
    local A = str_num(a)
    local B = str_num(b)
    while A >= B do
        A = A - B
    end
    return A
end

-- #a
-- Useful for golfiness
function _num.__len(n)
    return #n.str
end

-- Primacy Testing
-- Generates A from a and i from 2.
-- Whilst i is less than A, i is incremented by one, and if A % i == 0, then it's not a prime, and we return false.
-- Once that finishes, we return true.
function _num.isprime(a)
    local A = str_num(a)
    local i = str_num(2)
    while i < A do
        if A%i < 1 then
            return false
        end
        i:inc()
    end
    return true
end

-- b < a
-- A and B are generated from a and b
-- Fristly, if the length of A and B aren't equal, then that result is output.
-- Otherwise, each character is searched from left to right, the moment they are unequal, the difference is output.
-- If all the characters match, then it's equal. Return false.
function _num.__lt(b,a)
    A=str_num(a)
    B=str_num(b)
    if #A > #B then
        return true
    end
    if #B > #A then
        return false
    end
    for i=1, #A.str do
        As = A.str:sub(i,i)
        Bs = B.str:sub(i,i)
        if As > Bs then
            return true
        elseif As < Bs then
            return false
        end
    end
    return false
end


-- b <= a
-- Same as b < a, but returns true on equality.
function _num.__le(b,a)
    A=str_num(a)
    B=str_num(b)
    if #A > #B then
        return true
    end
    if #B > #A then
        return false
    end
    for i=1, #A.str do
        As = A.str:sub(i,i)
        Bs = B.str:sub(i,i)
        if As > Bs then
            return true
        elseif As < Bs then
            return false
        end
    end
    return true
end

-- Just straight up returns it's string component. Endlessly faster than the int equivalent, mostly because it never is anything _but_ the string form.
function _num.__tostring(a)
    return a.str
end

-- Just set up the metatable...
function str_num(n)
    if(type(n)=='table')then
        return setmetatable({str = n.str}, _num)
    end
    return setmetatable({str = tostring(n)}, _num)
end

-- Generate a new str_num from STDIN
Prime = str_num(io.read("*n"))

-- This is handy, because it will call Prime:inc() atleast once, and stop at the next prime number it finds.
-- Basically, if it weren't for all that overhead of making the math possible, that's all this would be.
repeat
    Prime:inc()
until Prime:isprime()
print(Prime)

Although the above uses Metatables, instead of just regular functions like the actual answer, which worked out smaller.

ATaco

Posted 2017-01-29T10:32:40.973

Reputation: 7 898

0

Ruby, 28+6 = 34 bytes

Uses the -rprime flag.

f=->i{i+=1;i.prime??i :f[i]}

Non-recursive version for 31+6=37 bytes:

->i{i+=1;i+=1 while i.prime?;i}

Value Ink

Posted 2017-01-29T10:32:40.973

Reputation: 10 608

0

Japt, 6 bytes

_j}aUÄ

Run it online.

Oliver

Posted 2017-01-29T10:32:40.973

Reputation: 7 160