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!)
A243610 Irregular triangular array of all the integers, each exactly once, ordered as in Comments. 2
1, 0, 2, -1, 4, -3, -2, 8, -7, -6, -4, 3, 16, -15, -14, -12, -8, 5, 6, 7, 32, -31, -30, -28, -24, -16, -5, 9, 10, 12, 13, 14, 15, 64, -63, -62, -60, -56, -48, -32, -13, -11, -10, -9, 17, 18, 20, 24, 25, 26, 28, 29, 30, 31, 128, -127, -126, -124, -120, -112 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Let F = A000045 (the Fibonacci numbers). To construct the array, decree the first 4 rows as in the Example. Thereafter, row n consists of F(n) numbers in increasing order, generated as follows: the F(n-1) numbers 2*x from x in row n-1, together with the F(n-2) numbers 1 - 2*x from numbers x in row n-2. For n >= 3, row n consists of F(n-1) negative integers and F(n-2) positive integers; also, row n consists of F(n-1) even integers and F(n-2) odd integers. Conjecture: Every row contains F(k) or -F(k) for some k.
LINKS
Danielle Cox and Karyn McLellan, A Problem on Generation Sets Containing Fibonacci Numbers, Fibonacci Quart. 55 (2017), no. 2, 105-113.
EXAMPLE
First 7 rows of the array:
1
0 .... 2
-1 ... 4
-3 ... -2 ... 8
-7 ... -6 ... -4 ... 3 .... 16
-15 .. -14 .. -12 .. -8 ... 5 .... 6 ... 7 .. 32
-31 .. -30 .. -28 .. -24 .. -16 .. -5 .. 9 .. 10 . 12 . 13 . 14 . 15 . 64
MATHEMATICA
z = 12; g[1] = {1}; f1[x_] := 2 x; f2[x_] := 1 - x; h[1] = g[1];
b[n_] := b[n] = DeleteDuplicates[Union[f1[g[n - 1]], f2[g[n - 1]]]];
h[n_] := h[n] = Union[h[n - 1], g[n - 1]];
g[n_] := g[n] = Complement [b[n], Intersection[b[n], h[n]]]
u = Table[g[n], {n, 1, 12}]
v = Flatten[u]
CROSSREFS
Sequence in context: A141155 A204922 A057669 * A182013 A144333 A126136
KEYWORD
easy,tabf,sign
AUTHOR
Clark Kimberling, Jun 08 2014
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 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)