[go: up one dir, main page]

login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A257545 a(0) = 2, a(n) = smallest prime p such that none of p - 1, p - 2,... p - n are squarefree. 2
2, 5, 29, 101, 5051, 5051, 73453, 671353, 130179187, 211014929, 262315477, 3639720053 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) << A002110(n)^10 by the CRT and Xylouris' improvement to Linnik's theorem. - Charles R Greathouse IV, Apr 29 2015
EXAMPLE
a(3) = 101 because 101 is prime and none of 101 - 1 = 100, 101 - 2 = 99, and 101 - 3 = 98 are squarefree.
MAPLE
p:= 2:
A[0]:= 2:
m:= 0:
while p < 10^6 do
p:= nextprime(p);
for k from 1 while not numtheory:-issqrfree(p-k) do od:
if k > m+1 then
for j from m+1 to k-1 do A[j]:= p od:
m:= k-1;
fi
od:
seq(A[i], i=0..m); # Robert Israel, Apr 29 2015
PROG
(PARI) a(n)=forprime(p=2, , for(k=1, n, if(issquarefree(p-k), next(2))); return(p)) \\ Charles R Greathouse IV, Apr 29 2015
CROSSREFS
Cf. A257108.
Sequence in context: A213996 A057794 A357199 * A073715 A104083 A257163
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(9)-a(11) from Charles R Greathouse IV, Apr 29 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 29 18:55 EDT 2024. Contains 375518 sequences. (Running on oeis4.)