login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A096878
Primes arising in A096134 (as absolute first differences).
1
2, 5, 3, 7, 13, 11, 73, 71, 31, 29, 37, 17, 47, 97, 113, 43, 67, 191, 109, 79, 23, 347, 367, 101, 83, 181, 197, 269, 463, 311, 277, 167, 163, 107, 139, 149, 233, 379, 41, 617, 613, 131, 127, 137, 179, 283, 281, 491, 439, 53, 211, 643, 953, 661, 659, 229, 227, 709, 647
OFFSET
1,1
EXAMPLE
a(1) = abs(A096134(1) - A096134(2)) = abs(2 - 4) = 2.
PROG
(PARI) {a=2; v=Set([]); for(n=2, 60, k=1; b=1; while(b, m=k*n; p=abs(m-a); if(gcd(m, n+1)==1&&isprime(p)&&setsearch(v, p)==0, v=setunion(v, Set(p)); print1(p, ", "); a=m; b=0, k++)))}
CROSSREFS
Cf. A096134.
Sequence in context: A082152 A354688 A084334 * A249162 A134563 A375552
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Jul 14 2004
STATUS
approved