diff options
author | Marvin Borner | 2025-01-23 15:34:21 +0100 |
---|---|---|
committer | Marvin Borner | 2025-01-23 15:34:21 +0100 |
commit | 76cc6f3ab0b6fd04b6eea37c04e4975b3c5c76cc (patch) | |
tree | 6ae0cae956eb0c661c71d9a2b3d289c7a0babf1d /samples/fun | |
parent | a3fe79ec9ad1c22eb288dd7fc32dfcea14b383b1 (diff) |
Experiment of golfing Wilson's theorem
Diffstat (limited to 'samples/fun')
-rw-r--r-- | samples/fun/wilsons_primes.bruijn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/samples/fun/wilsons_primes.bruijn b/samples/fun/wilsons_primes.bruijn new file mode 100644 index 0000000..2bdf886 --- /dev/null +++ b/samples/fun/wilsons_primes.bruijn @@ -0,0 +1,17 @@ +# 208-bit golfed characteristic prime sequence using Wilson's theorem +# (Tromp's prime sieve only takes 143 bit) + +# b' not-zero? mod +zmod [[1 [0 [[1]]] (1 [1 [[[0 (2 [[1]]) 1]]] [1] [[0]]] [[[0]]]) [[0]]]] + +zero? [0 [[[0]]] [[1]]] ⧗ Unary → Boolean + +# experiment with repeated subtraction (flipped args, zero? not golfed yet) +# TODO: consider Parigot for trivial predecessor? +zmod' [[0 0] [[[zero? (0 3 1) (2 2 (0 1 3)) (zero? 1)] sub]]] + sub [[0 [[[2 [[0 (1 3)]] [1] [0]]]] 1]] + +# y [[[(zmod 1 0) : (2 (1 ⋅ (0 ⋅ 0)) ++0)]]] (+1u) (+1u) +loop [0 0] [[[[0 (2 [0 [[1]]] (2 [2 [[[0 (2 [[1]]) 1]]] [1] [[0]]] [[[0]]]) [[0]]) (3 3 [3 (2 (2 0))] [[1 (3 1 0)]])]]]] (+1u) (+1u) + +main [loop] |