|
| |
|
|
A098033
|
|
Parity of p(p+1)/2 for n-th prime p.
|
|
1
| |
|
|
1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| The following sequences (possibly with a different offset for first term) all appear to have the same parity: A034953 = triangular numbers with prime indices; A054269 = length of period of continued fraction for sqrt(p), p prime; A082749 = difference between the sum of next prime(n) natural numbers and the sum of next n primes; A006254 = numbers n such that 2n-1 is prime; A067076 = numbers n such that 2n+3 is a prime.
Analogous to the prime race (mod 3). - Robert G. Wilson v Sep 17 2004.
See also A089253 = 2n-5 is a prime.
|
|
|
FORMULA
| a(n) = parity of (p(p+1)/2) for n-th prime p(n)
a(n) = (p(n) mod 4) mod 3,n>1 for n-th prime p(n).[From Gary Detlefs, Oct 27 2011]
|
|
|
EXAMPLE
| a(1) = parity of (2(2+1)/2 = 3) = 1 (odd).
|
|
|
MAPLE
| seq((ithprime(n) mod 4)mod 3, n= 2..105].[From Gary Detlefs, Oct 27 2011]
|
|
|
MATHEMATICA
| Table[ Mod[ Prime[n](Prime[n] + 1)/2, 2], {n, 105}] (from Robert G. Wilson v Sep 17 2004)
|
|
|
PROG
| (PARI) a(n)=prime(n)%4<3 \\ Charles R Greathouse IV, Oct 27 2011
|
|
|
CROSSREFS
| Cf. A034953, A054269, A082749, A006254, A067076.
equal to 1 minus A100672 [From Steven G. Johnson (stevenj(AT)math.mit.edu), Sep 18 2008]
Sequence in context: A145273 A120522 A157423 * A135022 A071982 A157749
Adjacent sequences: A098030 A098031 A098032 * A098034 A098035 A098036
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Jeremy Gardiner (jeremy.gardiner(AT)btinternet.com), Sep 10 2004
|
|
|
EXTENSIONS
| More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Sep 17 2004
|
| |
|
|