|
| |
|
|
A121543
|
|
Sequence: "if n appears then n-th prime doesn't", case a(1)=1.
|
|
0
| |
|
|
1, 3, 4, 6, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 21, 22, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
MATHEMATICA
| (* two versions:*) (* first*) s={1}; Do[If[ !PrimeQ[n]||(PrimeQ[n]&&FreeQ[s, PrimePi[n]]), AppendTo[s, n]], {n, 2, 100}]; s (* Zak Seidov *) (* 2nd *) Table[Prime[Prime[Floor[GoldenRatio*n]]], {n, 1, 20}]; Select[Prime[Range[PrimePi[Last[%]]]], !MemberQ[%, # ]&]; Select[Range[Last[%]], !MemberQ[%, # ]&] (* Joseph Biberstine *)
|
|
|
CROSSREFS
| Sequence in context: A199015 A196098 A099356 * A080702 A156167 A090864
Adjacent sequences: A121540 A121541 A121542 * A121544 A121545 A121546
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Zak Seidov (zakseidov(AT)yahoo.com), Aug 06 2006
|
| |
|
|