A382129 Fractalization of the prime numbers.
2, 2, 3, 2, 5, 3, 7, 2, 11, 5, 13, 3, 17, 7, 19, 2, 23, 11, 29, 5, 31, 13, 37, 3, 41, 17, 43, 7, 47, 19, 53, 2, 59, 23, 61, 11, 67, 29, 71, 5, 73, 31, 79, 13, 83, 37, 89, 3, 97, 41, 101, 17, 103, 43, 107, 7, 109, 47, 113, 19, 127, 53, 131, 2, 137, 59, 139, 23, 149, 61, 151, 11, 157
Offset: 1
Links
- David Cleaver, Table of n, a(n) for n = 1..10000
- Clark Kimberling, Fractal sequences.
Programs
-
Mathematica
a[n_] := Prime[(n/2^IntegerExponent[n, 2] + 1)/2]; Array[a, 100] (* Amiram Eldar, Mar 21 2025 *)
Comments