Skip to main content
Commonmark migration
Source Link

##Java

Java

I can't find a pattern in that sequence. If there's no recognizable pattern, we might as well just throw a bunch of small primes together, cram them into Java's built-in RNG, and call it a day. I don't see how that could possibly go wrong, but then again, I'm an optimist :)

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut=2*((2*5*7)+1)*((2*2*3*((2*2*2*2*11)+3))+5)* ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L); int burner=2*2*2*5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(burner)+3) + " "); // cross your fingers! System.out.println(); } } } 

##Java

I can't find a pattern in that sequence. If there's no recognizable pattern, we might as well just throw a bunch of small primes together, cram them into Java's built-in RNG, and call it a day. I don't see how that could possibly go wrong, but then again, I'm an optimist :)

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut=2*((2*5*7)+1)*((2*2*3*((2*2*2*2*11)+3))+5)* ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L); int burner=2*2*2*5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(burner)+3) + " "); // cross your fingers! System.out.println(); } } } 

Java

I can't find a pattern in that sequence. If there's no recognizable pattern, we might as well just throw a bunch of small primes together, cram them into Java's built-in RNG, and call it a day. I don't see how that could possibly go wrong, but then again, I'm an optimist :)

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut=2*((2*5*7)+1)*((2*2*3*((2*2*2*2*11)+3))+5)* ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L); int burner=2*2*2*5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(burner)+3) + " "); // cross your fingers! System.out.println(); } } } 
added 77 characters in body
Source Link
Geobits
  • 19.7k
  • 4
  • 56
  • 125

##Java

I can't seem to find a pattern in that sequence. Any time I want to print an arbitrary sequenceIf there's no recognizable pattern, Iwe might as well just throw a bunch of small primes together, cram them into Java's built in-in RNG, and call it a day. What could be more arbitrary thanI don't see how that? could possibly go wrong, but then again, I'm an optimist :)

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut = 2 * 71 nut=2*((2*5*7)+1)* ((2 2*2*3*((2*2*2*2*11)+3))+5)*   2 * 3 * 179) + 5) * ((3 * 5 * 19 * 97) + 2L ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L); int berry = 2 * 2 * 2 * 5;burner=2*2*2*5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(berryburner)+3) + " "); // cross your fingers! System.out.println(); } } } 

##Java

I can't seem to find a pattern in that sequence. Any time I want to print an arbitrary sequence, I just throw a bunch of primes into Java's built in RNG. What could be more arbitrary than that?

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut = 2 * 71 * ((2 * 2 * 3 * 179) + 5) * ((3 * 5 * 19 * 97) + 2L); int berry = 2 * 2 * 2 * 5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(berry)+3) + " "); System.out.println(); } } } 

##Java

I can't find a pattern in that sequence. If there's no recognizable pattern, we might as well just throw a bunch of small primes together, cram them into Java's built-in RNG, and call it a day. I don't see how that could possibly go wrong, but then again, I'm an optimist :)

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut=2*((2*5*7)+1)*((2*2*3*((2*2*2*2*11)+3))+5)*    ((3*5*((2*3*3)+1)*((2*2*2*2*2*3)+1))+2L); int burner=2*2*2*5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(burner)+3) + " "); // cross your fingers! System.out.println(); } } } 
Source Link
Geobits
  • 19.7k
  • 4
  • 56
  • 125

##Java

I can't seem to find a pattern in that sequence. Any time I want to print an arbitrary sequence, I just throw a bunch of primes into Java's built in RNG. What could be more arbitrary than that?

import java.util.Random; public class LostNumbers { public static void main(String[] args) { long nut = 2 * 71 * ((2 * 2 * 3 * 179) + 5) * ((3 * 5 * 19 * 97) + 2L); int berry = 2 * 2 * 2 * 5; while(true){ Random dice = new Random(nut); for(int i=0;i<6;i++) System.out.print((dice.nextInt(berry)+3) + " "); System.out.println(); } } }