A244622 Primes in the sequence of first arithmetic derivative of primorials.
5, 31, 2927, 40361, 201015517717077830328949, 13585328068403621603022853, 5692733621468679832887230172131, 3215488142498485484492183158345029261034221047849345857469577412562094716564064084247
Offset: 1
Keywords
Examples
a(1) = (3#)' = (2*3 = 6)' = 2+3 = 5.
Links
- Freimut Marschner, Table of n, a(n) for n = 1..13
Programs
-
Maple
a(1) = (prime(2)#)' = (3#)' = (6)' = 5, (5)' = 1 ; a(4) = (prime(6)#)' = (13#)' =(30030)' = 40361, (40361)' = 1.
-
Mathematica
f[n_] := Numerator[Accumulate[Table[1/Prime[i], {i, 1, n}]]]; Select[f[50], PrimeQ] (* Ivan N. Ianakiev, Jul 08 2019 *)
-
PARI
lista() = {vadp = readvec("/gp/bfiles/b024451.txt"); for (i=1, #vadp, if (isprime(vadp[i]), print1(vadp[i], ", ");););} \\ Michel Marcus, Jul 05 2014
Comments