cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A272907 Lucas-products fractal sequence.

This page as a plain text file.
%I A272907 #7 Feb 22 2020 20:54:24
%S A272907 1,1,1,1,2,1,2,3,1,2,3,1,2,3,1,4,2,3,1,4,2,3,5,1,4,2,3,5,1,4,2,3,5,1,
%T A272907 6,4,2,3,5,1,6,4,2,3,5,7,1,6,4,2,3,5,7,1,6,4,2,3,5,7,1,8,6,4,2,3,5,7,
%U A272907 1,8,6,4,2,3,5,7,9,1,8,6,4,2,3,5,7,9
%N A272907 Lucas-products fractal sequence.
%C A272907 Let L = A000032, the Lucas numbers.  Let s be the sequence of all products L(i)L(j), for 1 <= i < = j, arranged in increasing order; viz., (1,3,4,7,9,11,12,16,18,21,...) = (L(1)L(1), L(1)L(2), L(1)L(3), L(1)L(4), L(2)L(2), L(1)L(5), L(2)L(3), L(3)L(3), L(1)L(6), L(2)L(4),...).  The sequence of first factors is represented by indices A272907 = (1,1,1,1,2,1,2,3,1,2,...), which is a fractal sequence; i.e., the removal of the first occurrence of each term in A272907 leaves A272907, so that the sequence contains itself infinitely many times.
%H A272907 Clark Kimberling, <a href="/A272907/b272907.txt">Table of n, a(n) for n = 1..1000</a>
%t A272907 z = 200; f[n_] := LucasL[n]; u1 = Table[f[n], {n, 1, z}];
%t A272907 u2 = Sort[Flatten[Table[f[i]*f[j], {i, 1, z}, {j, i, z}]]];
%t A272907 Table[Select[Range[30], MemberQ[u1, u2[[i]]/f[#]] &][[1]], {i, 1, z}]
%Y A272907 Cf. A272908 (associated interspersion), A000032, A272900 (Fibonacci-products fractal sequence).
%K A272907 nonn,easy
%O A272907 1,5
%A A272907 _Clark Kimberling_, May 10 2016