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.

A274287 Numbers that are a product of distinct numbers in row 3 of the Wythoff array, A035513.

This page as a plain text file.
%I A274287 #4 Jun 18 2016 00:40:25
%S A274287 6,10,16,26,42,60,68,96,110,156,160,178,252,260,288,408,416,420,466,
%T A274287 660,672,680,754,960,1068,1088,1092,1100,1220,1560,1728,1760,1768,
%U A274287 1780,1974,2496,2520,2796,2848,2856,2860,2880,3194,4032,4080,4160,4524,4608
%N A274287 Numbers that are a product of distinct numbers in row 3 of the Wythoff array, A035513.
%C A274287 See the Comment on distinct-product sequences in A160009.
%H A274287 Clark Kimberling, <a href="/A274287/b274287.txt">Table of n, a(n) for n = 1..1000</a>
%e A274287 60 = 6*10, 960 = 6*10*16.
%t A274287 f[1] = 6; f[2] = 10; z = 33; f[n_] := f[n - 1] + f[n - 2]; f = Table[f[n], {n, 1, z}]; f
%t A274287 s = {1}; Do[s = Union[s, Select[s*f[[i]], # <= f[[z]] &]], {i, z}]; Rest[s]
%Y A274287 Cf. A160009.
%K A274287 nonn,easy
%O A274287 1,1
%A A274287 _Clark Kimberling_, Jun 17 2016