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!)
A260317 Numbers not of the form v(m) + v(n), where v = A001950 (upper Wythoff numbers) and 1 <= m <= n - 1, for n >= 2. 2
1, 2, 3, 4, 5, 6, 8, 10, 11, 13, 14, 16, 19, 21, 24, 26, 29, 32, 34, 37, 40, 42, 45, 50, 53, 55, 58, 63, 66, 68, 71, 76, 79, 84, 87, 89, 92, 97, 100, 105, 108, 110, 113, 118, 121, 126, 131, 134, 139, 142, 144, 147, 152, 155, 160, 165, 168, 173, 176, 178, 181 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It appears that the difference sequence consists entirely of Fibonacci numbers (A000045); see A260311.
In fact, the difference sequence consists only of the numbers 1,2,3,5. Proved with the Walnut theorem-prover. - Jeffrey Shallit, Oct 12 2022
LINKS
MATHEMATICA
r = GoldenRatio; z = 1060;
u[n_] := u[n] = Floor[n*r]; v[n_] := v[n] = Floor[n*r^2];
s[m_, n_] := v[m] + v[n];
t = Table[s[m, n], {n, 2, z}, {m, 1, n - 1}]; (* A259601 *)
w = Flatten[Table[Count[Flatten[t], n], {n, 1, z}]];
p0 = Flatten[Position[w, 0]] (* A260317 *)
d = Differences[p0] (* A260311 *)
CROSSREFS
Sequence in context: A226244 A140642 A188936 * A072666 A075471 A193687
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 22 2015
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)