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!)
A205850 [s(k)-s(j)]/4, where the pairs (k,j) are given by A205847 and A205848, and s(k) denotes the (k+1)-st Fibonacci number. 5

%I #5 Mar 30 2012 18:58:12

%S 1,3,2,5,4,2,8,13,22,21,19,17,34,58,57,55,53,36,94,93,91,89,72,36,152,

%T 144,246,233,399,398,396,394,377,341,305,644,610,1045,1044,1042,1040,

%U 1023,987,951,646,1691,1690,1688,1686,1669,1633,1597,1292,646

%N [s(k)-s(j)]/4, where the pairs (k,j) are given by A205847 and A205848, and s(k) denotes the (k+1)-st Fibonacci number.

%C For a guide to related sequences, see A205840.

%e The first six terms match these differences:

%e s(4)-s(1) = 5-1 = 4 = 4*1

%e s(6)-s(1) = 13-1 = 12= 4*3

%e s(6)-s(4) = 13-5 = 8 = 4*2

%e s(7)-s(1) = 21-1 = 20 = 4*5

%e s(7)-s(4) = 21-5 = 16 = 4*4

%e s(7)-s(6) = 21-13 = 8 = 4*2

%t s[n_] := s[n] = Fibonacci[n + 1]; z1 = 400; z2 = 60;

%t f[n_] := f[n] = Floor[(-1 + Sqrt[8 n - 7])/2];

%t Table[s[n], {n, 1, 30}]

%t u[m_] := u[m] = Flatten[Table[s[k] - s[j], {k, 2, z1}, {j, 1, k - 1}]][[m]]

%t Table[u[m], {m, 1, z1}] (* A204922 *)

%t v[n_, h_] := v[n, h] = If[IntegerQ[u[h]/n], h, 0]

%t w[n_] := w[n] = Table[v[n, h], {h, 1, z1}]

%t d[n_] := d[n] = Delete[w[n], Position[w[n], 0]]

%t c = 4; t = d[c] (* A205846 *)

%t k[n_] := k[n] = Floor[(3 + Sqrt[8 t[[n]] - 1])/2]

%t j[n_] := j[n] = t[[n]] - f[t][[n]] (f[t[[n]]] + 1)/2

%t Table[k[n], {n, 1, z2}] (* A205847 *)

%t Table[j[n], {n, 1, z2}] (* A205848 *)

%t Table[s[k[n]] - s[j[n]], {n, 1, z2}](* A205849 *)

%t Table[(s[k[n]] - s[j[n]])/c, {n, 1, z2}] A205850 *)

%Y Cf. A204892, A205845, A205849.

%K nonn

%O 1,2

%A _Clark Kimberling_, Feb 02 2012

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 18 06:31 EDT 2024. Contains 375255 sequences. (Running on oeis4.)