Skip to main content
Commonmark migration
Source Link

05AB1E, 5 bytes

·ÅPʒ‹ 

Try it online!

###How?

How?

 ·ÅPʒ‹ || Full program. || · || Double the input. ÅP || Lists all the prime lower than or equal to ^. ʒ‹ || Filter-keep those which are greater than the input. 

05AB1E, 5 bytes

·ÅPʒ‹ 

Try it online!

###How?

 ·ÅPʒ‹ || Full program. || · || Double the input. ÅP || Lists all the prime lower than or equal to ^. ʒ‹ || Filter-keep those which are greater than the input. 

05AB1E, 5 bytes

·ÅPʒ‹ 

Try it online!

How?

 ·ÅPʒ‹ || Full program. || · || Double the input. ÅP || Lists all the prime lower than or equal to ^. ʒ‹ || Filter-keep those which are greater than the input. 
Source Link
Mr. Xcoder
  • 42.9k
  • 9
  • 87
  • 221

05AB1E, 5 bytes

·ÅPʒ‹ 

Try it online!

###How?

 ·ÅPʒ‹ || Full program. || · || Double the input. ÅP || Lists all the prime lower than or equal to ^. ʒ‹ || Filter-keep those which are greater than the input.