A120343
Sequence of pairs numerator(s(n)), denominator(s(n)) where s(n) is the n-th partial sum of 1/A119754(n).
Original entry on oeis.org
1, 5, 16, 55, 327, 935, 382, 935, 9721, 21505, 303414, 623645, 14884103, 29311315, 818168774, 1553499695, 49825457361, 91656482005, 4526122187134, 8157426898445, 1035587163377863, 1851735905947015, 243143544972989094
Offset: 1
a(5)=327, a(6)=935 since s(3)=1/5+1/11+1/17=327/935.
This is not really a sequence. The standard OEIS convention would be to split this into two cross-referenced sequences with keyword "frac". -
N. J. A. Sloane, Jul 22 2006
A120342
Sequence of pairs numerator(s(n)), denominator(s(n)) where s(n) is the n-th partial sum of 1/A119752(n).
Original entry on oeis.org
1, 2, 5, 8, 39, 56, 443, 616, 1783, 2464, 51819, 71456, 4720633, 6502496, 4722257, 6502496, 797359442331, 1097952952096, 878673909876949097, 1209921096197797984, 1351031156635237614515155
Offset: 1
a(5)=39, a(6)=56 since s(3)=1/2+1/8+1/14=39/56.
This is not really a sequence. The standard OEIS convention would be to split this into two cross-referenced sequences with keyword "frac". -
N. J. A. Sloane, Jul 22 2006
A120402
a(1)=2; a(n)=first even number greater than a(n-1) such that 2*a(n)-1 is prime and a(i)+a(n)-1 is prime for all 1<=i<=n-1.
Original entry on oeis.org
2, 4, 10, 70, 430, 4090, 86530, 513100, 913570, 7914340, 6593621380, 9366241600
Offset: 1
a(2)=4 since 4 is the first even number > a(1)=2 such that 2*4-1=7 is prime and 4+2-1=5 is prime.
-
EP:=[2]: for w to 1 do for k from 0 to 12^8 do n:=6*k+4; p:=2*n-1; Q:=map(z-> z+n-1, EP); if isprime(p) and andmap(isprime,Q) then EP:=[op(EP),n]; print(n); fi od od;
A120403
a(1)=3; a(n)=first odd number greater than a(n-1) such that 2*a(n)-1 is prime and a(i)+a(n)-1 is prime for all 1<=i<=n-1.
Original entry on oeis.org
3, 9, 15, 45, 225, 639, 1275, 4005, 675405, 2203959, 3075159, 6195234165, 77989711185, 4566262987329
Offset: 1
a(2)=9 since 9 is the first odd number > a(1)=3 such that 2*9-1=17 is prime and 9+3-1=13 is prime.
-
OP:=[3]: for w to 1 do for k from 0 to 12^8 do n:=6*k+3; p:=2*n-1; Q:=map(z-> z+n-1, OP); if isprime(p) and andmap(isprime,Q) then OP:=[op(OP), n]; print(n); fi od od;
Showing 1-4 of 4 results.
Comments