A214617 Primes written in the factorial base.
10, 11, 21, 101, 121, 201, 221, 301, 321, 1021, 1101, 1201, 1221, 1301, 1321, 2021, 2121, 2201, 2301, 2321, 3001, 3101, 3121, 3221, 4001, 4021, 4101, 4121, 4201, 4221, 10101, 10121, 10221, 10301, 11021, 11101, 11201, 11301, 11321, 12021, 12121, 12201, 12321
Offset: 1
Examples
prime(6) = 13 = 2*3! + 1! so a(6) = 201.
Links
- Alois P. Heinz, Table of n, a(n) for n = 1..1000
Programs
-
Maple
b:= proc(n, i) local r; `if`(n b(ithprime(n), 2): seq(a(n), n=1..50); # Alois P. Heinz, Mar 16 2013
Comments