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!)
A341183 Numbers k such that (30*k)^4 + 1 is prime. 1
3, 6, 7, 18, 20, 23, 27, 31, 39, 40, 55, 56, 57, 68, 75, 80, 88, 90, 101, 103, 113, 115, 116, 124, 126, 129, 132, 136, 139, 148, 153, 163, 165, 173, 194, 203, 211, 215, 218, 232, 260, 277, 284, 285, 288, 290, 293, 302, 309, 336, 344, 347, 357, 358, 362, 368, 377, 390, 394, 397, 401 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This is the third sequence in a family defined by this same condition, when generalized as (30*k)^(2^m).
A111175 and A138220 are the first and second sequences in this family, with m = 0 and m = 1, respectively.
LINKS
MATHEMATICA
(* This program gives some results for each member of the family for m up to 10. *)
Do[resultk = {};
Do[
r = (30 k)^(2^m) + 1;
If[PrimeQ[r], AppendTo[resultk, k]];
, {k, 1, 1000}];
If[Length[resultk] > 0, Print[{m, 2^m, resultk}]], {m, 0, 10}]
PROG
(PARI) isok(k) = isprime((30*k)^4 + 1); \\ Michel Marcus, Feb 13 2021
CROSSREFS
Sequence in context: A072773 A130049 A333553 * A259256 A056703 A113534
KEYWORD
nonn
AUTHOR
Richard R. Forberg, Feb 06 2021
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 April 23 12:08 EDT 2024. Contains 371912 sequences. (Running on oeis4.)