|
| |
|
|
A112926
|
|
Smallest squarefree integer > the n-th prime.
|
|
5
| |
|
|
3, 5, 6, 10, 13, 14, 19, 21, 26, 30, 33, 38, 42, 46, 51, 55, 61, 62, 69, 73, 74, 82, 85, 91, 101, 102, 105, 109, 110, 114, 129, 133, 138, 141, 151, 154, 158, 165, 170, 174, 181, 182, 193, 194, 199, 201, 213, 226, 229, 230, 235, 241, 246, 253, 258, 265, 271, 273
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
EXAMPLE
| 10 is the smallest squarefree number greater than the 4th prime, 7. So a(4) = 10.
|
|
|
MAPLE
| with(numtheory): a:=proc(n) local p, B, j: p:=ithprime(n): B:={}: for j from p+1 to p+20 do if abs(mobius(j))>0 then B:=B union {j} else B:=B fi od: B[1] end: seq(a(m), m=1..75); (Deutsch)
|
|
|
MATHEMATICA
| <<NumberTheory`; Do[k = Prime[n] + 1; While[ !SquareFreeQ[k], k++ ]; Print[k], {n, 1, 100}] (Propper)
|
|
|
CROSSREFS
| Cf. A112925, A061400, A112928, A112929, A112930.
Sequence in context: A207063 A115823 A190721 * A176747 A027627 A194466
Adjacent sequences: A112923 A112924 A112925 * A112927 A112928 A112929
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Leroy Quet Oct 06 2005
|
|
|
EXTENSIONS
| More terms from Ryan Propper (rpropper(AT)stanford.edu) and Emeric Deutsch (deutsch(AT)duke.poly.edu), Oct 10 2005
|
| |
|
|