[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!)
A054758 a(n) is the smallest multiplier w such that A002110(n)*w + prime(n+1)^2 is prime. 5
1, 1, 1, 1, 2, 1, 2, 3, 2, 8, 5, 4, 1, 6, 3, 13, 7, 2, 1, 6, 2, 3, 5, 7, 7, 8, 31, 1, 22, 6, 60, 20, 12, 5, 2, 12, 5, 16, 7, 20, 1, 2, 14, 42, 23, 16, 13, 30, 53, 5, 7, 36, 10, 10, 67, 6, 2, 40, 24, 3, 28, 59, 6, 4, 76, 1, 74, 5, 30, 16, 2, 39, 6, 56, 138, 3, 22, 37, 11, 8, 35, 102, 156 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
For n=1,2,3,4,6,13,19,28,41,66,85,..., A002110(n) + prime(n+1)^2 is a prime; i.e., the multiplier w is 1.
LINKS
EXAMPLE
2310 + 169 = 2479 = 37*67 = 2*3*5*7*11 + 13^2 is not prime but 2*2310 + 169 = 4789 is a prime.
MATHEMATICA
Table[Function[{P, q}, w = 1; While[! PrimeQ[P w + q], w++]; w] @@ {Times @@ #2, First[#1]^2} & @@ # &@ TakeDrop[Take[#, n], -1], {n, 2, Length@ #}] &@ Prime@ Range@ 84 (* Michael De Vlieger, Jul 14 2017 *)
PROG
(PARI) a(n) = {my(m=1, primo=prod(k=1, n, prime(k))); while (!isprime(primo*m + prime(n+1)^2), m++); m; } \\ Michel Marcus, Nov 20 2017
CROSSREFS
Cf. A002110.
Sequence in context: A035368 A249686 A107853 * A077876 A095056 A337557
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 25 2000
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 30 21:13 EDT 2024. Contains 375548 sequences. (Running on oeis4.)