login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A192646
First differences of A192645.
6
1, 1, 2, 3, 8, 5, 3, 15, 16, 5, 3, 72, 50, 7, 39, 16, 5, 3, 65, 49, 8, 39, 16, 5, 3, 72, 39, 16, 5, 3, 369, 1, 135, 185, 192, 39, 8, 8, 5, 3, 1, 368, 190, 369, 1, 46, 89, 47, 8, 130, 192, 39, 16, 5, 3, 17, 118, 185, 49, 48, 87, 8, 39, 16, 5, 3, 114, 192, 39, 16, 5, 3, 48
OFFSET
1,3
COMMENTS
Does this sequence include 1 infinitely many times?
EXAMPLE
A192645 = (1, 2, 3, 5, 8, 16, 21, ...) gives (2-1, 3-2, 5-3, 8-5, 16-8, 21-16, ...)
MATHEMATICA
start = {1, 2};
f[x_, y_] := If[MemberQ[Range[1, 5000], x^2 - y^2], x^2 - y^2]
b[x_] :=
Block[{w = x},
Select[Union[
Flatten[AppendTo[w,
Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
5000 &]];
t = FixedPoint[b, start] (* A192645 *)
Differences[t] (* A192646 *)
CROSSREFS
Sequence in context: A299788 A244915 A244668 * A338841 A100208 A277972
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 06 2011
STATUS
approved