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!)
A358130 Indices k such that A358128(k) is a square. 1
1, 2, 3, 6, 9, 11, 15, 45, 51, 59, 81, 126, 165, 174, 179, 255, 681, 831, 839, 921, 1734, 1739, 1845, 2499, 2519, 2661, 3119, 5061, 5094, 5099, 5289, 5301, 8061, 8571, 8579, 9654, 9659, 11094, 11399, 12315, 13254, 16011, 16379, 18225, 18234, 18239, 19401, 19689, 26214, 26219, 27141, 28554, 29039 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(5) = 9 is a term because A358128(9) = 25 = 5^2 is a square.
MAPLE
f:= proc(n) local p;
p:= 1:
do
p:= nextprime(p);
if isprime(p+4*n) and numtheory:-bigomega(p+2*n) = 2 then return p+2*n fi
od
end proc:
select(t -> issqr(f(t)), [$1..30000]);
PROG
(PARI) isok(k) = my(x=2*k+2); while ((bigomega(x)!=2) || !isprime(x-2*k) || !isprime(x+2*k), x++); issquare(x); \\ Michel Marcus, Oct 31 2022
CROSSREFS
Cf. A358128.
Sequence in context: A067886 A227000 A338546 * A176189 A057127 A224449
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Oct 30 2022
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 21 13:43 EDT 2024. Contains 375353 sequences. (Running on oeis4.)