A167053 a(1)=3; for n > 1, a(n) = 1 + a(n-1) + gcd( a(n-1)*(a(n-1)+2), A073829(a(n-1)) ).
3, 19, 39, 81, 165, 333, 335, 673, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 2721, 2723, 2725, 2727, 5457, 5459, 5461, 5463, 5465, 5467, 5469, 10941, 10943, 10945, 10947, 21897, 21899, 21901, 21903, 21905, 21907, 21909, 43821, 43823, 43825, 43827, 43829, 43831
Offset: 1
Keywords
Examples
a(2) = 1 + 3 + gcd(3*5, 4*(2! + 1) + 3) = 19.
References
- E. Trost, Primzahlen, Birkhäuser-Verlag, 1953, pages 30-31.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..206
- P. A. Clement, Congruences for sets of primes, Amer. Math. Monthly, 56 (1949), 23-25.
Crossrefs
Programs
-
Maple
A073829 := proc(n) n+4*((n-1)!+1) ; end proc: A167053 := proc(n) option remember ; local aprev; if n = 1 then 3; else aprev := procname(n-1) ; 1+aprev+gcd(aprev*(aprev+2),A073829(aprev)) ; end if; end proc: seq(A167053(n),n=1..60) ; # R. J. Mathar, Dec 17 2009
-
Mathematica
A073829[n_] := 4((n-1)! + 1) + n; a[1] = 3; a[n_] := a[n] = 1 + a[n-1] + GCD[a[n-1] (a[n-1] + 2), A073829[a[n-1]]]; Array[a, 60] (* Jean-François Alcover, Mar 25 2020 *)
Extensions
Definition shortened and values from a(4) on replaced by R. J. Mathar, Dec 17 2009
Comments