A077545 Primes of the form floor(k*e).
2, 5, 13, 19, 29, 43, 59, 67, 73, 89, 97, 103, 127, 149, 157, 163, 173, 179, 233, 239, 241, 263, 269, 271, 277, 293, 307, 331, 337, 347, 353, 383, 421, 443, 467, 521, 557, 587, 617, 619, 641, 701, 709, 733, 739, 761, 769, 823, 829, 839, 853, 883, 907, 929, 937
Offset: 1
Programs
-
Mathematica
r=E; s=r/(r-1); a[n_]:=Floor[n*r]; b[n_]:=Floor[n*s]; Table[a[n], {n, 1, 120}] (* A022843 *) t1={}; Do[If[PrimeQ[a[n]], AppendTo[t1, a[n]]], {n, 1, 600}]; t1 t2={}; Do[If[PrimeQ[a[n]], AppendTo[t2, n]], {n, 1, 600}]; t2 t3={}; Do[If[MemberQ[t1, Prime[n]], AppendTo[t3, n]], {n, 1, 300}]; t3 t4={}; Do[If[PrimeQ[b[n]], AppendTo[t4, b[n]]], {n, 1, 600}]; t4 t5={}; Do[If[PrimeQ[b[n]], AppendTo[t5, n]], {n, 1, 600}]; t5 t6={}; Do[If[MemberQ[t4, Prime[n]], AppendTo[t6, n]], {n, 1, 300}]; t6 (* List t1 matches A077545; list t2 matches A062409; lists t3-t6 match A184855-A184858. *)
Extensions
More terms from Sascha Kurz, Jan 12 2003
Mathematica code and crossreferences by Clark Kimberling, Jan 24 2011
Comments