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!)
A145049 Primes p of the form 4k+1 for which s=17 is the least positive integer such that sp-(floor(sqrt(sp)))^2 is a square. 7
3037, 3169, 3257, 3769, 4013, 4421, 4793, 4957, 5237, 5297, 5701, 5821, 5881, 6373, 6689, 6761, 6949, 7013, 7213, 7417, 7481, 7549, 7621, 7757, 8389, 8461, 8537, 8681, 8753, 9049, 9133, 9277, 9349, 9733, 10133, 10529, 10601, 11093, 11177, 11257, 11677, 11701 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1)=3037 since p=3037 is the least prime of the form 4k+1 for which sp-(floor(sqrt(sp)))^2 is not a square for s=1..16, but 17p-(floor(sqrt(17p)))^2 is a square (for p=3037 it is 100).
MAPLE
filter:= proc(p) local s;
if not isprime(p) then return false fi;
for s from 1 to 17 do
if issqr(s*p - floor(sqrt(s*p))^2) then return evalb(s=17) fi
od;
false
end proc:
select(filter, [seq(i, i=1..10000, 4)]); # Robert Israel, Jan 22 2024
CROSSREFS
Sequence in context: A254162 A254451 A205929 * A108706 A235218 A235662
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Sep 30 2008
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 March 28 16:28 EDT 2024. Contains 371254 sequences. (Running on oeis4.)