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!)
A108399 Least positive k such that n^2 + k is a golden semiprime (A108540). 1
5, 2, 6, 61, 52, 41, 28, 13, 106, 87, 66, 43, 18, 393, 364, 333, 300, 265, 228, 189, 148, 105, 60, 13, 226, 175, 122, 67, 10, 463, 402, 339, 274, 207, 138, 67, 814, 739, 662, 583, 502, 419, 334, 247, 158, 67, 538, 443, 346, 247, 146, 43, 4494, 4387, 4278, 4167, 4054 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: for every n > 1 there exists a number k < n^3 such that n^2 + k is a golden semiprime.
LINKS
EXAMPLE
a(4)=61 because 4^2+61 = 77 = 7*11 and 7*phi-11 = 0.326237... < 1.
MATHEMATICA
goldQ[n_] := Module[{f = FactorInteger[n]}, If[Length[f] != 2, False, If[Max[f[[;; , 2]]] != 1, False, Abs[f[[2, 1]] - f[[1, 1]] * GoldenRatio] < 1]]]; a[n_] := Module[{k = 1}, While[!goldQ[n^2 + k], k++]; k]; Array[a, 57] (* Amiram Eldar, Nov 29 2019 *)
CROSSREFS
Cf. A108540.
Sequence in context: A292580 A301914 A180706 * A094772 A263832 A351952
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jul 03 2005
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 18 03:01 EDT 2024. Contains 371767 sequences. (Running on oeis4.)