A292876 Irregular table whose n-th row lists all k such that A039654(k) = prime(n).
2, 3, 5, 7, 4, 6, 11, 13, 10, 17, 19, 8, 14, 15, 23, 29, 21, 31, 37, 20, 26, 41, 43, 22, 33, 35, 47, 34, 53, 18, 24, 38, 59, 61, 67, 9, 12, 16, 25, 27, 28, 30, 39, 46, 51, 55, 71, 73, 57, 79, 44, 65, 83, 40, 58, 89
Offset: 1
Examples
The table starts: n p(n) { k | A039654(k) = p(n) } 1 2 { 2 } 2 3 { 3 } 3 5 { 5 } 4 7 { 7 } 5 11 { 4, 6, 11 } 6 13 { 13 } 7 17 { 10, 17 } 8 19 { 19 } 9 23 { 8, 14, 15, 23 }
Links
- M. F. Hasler, Table rows n = 1..1229
Programs
-
PARI
A292876(n,p=prime(n))=select(k->A039654(k)==p,[2..p]) \\ Not optimized nor efficient; mainly for illustrational purpose. - M. F. Hasler, Sep 25 2017
Comments