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.

A327258 Positions of 1's in {A327256(n) : n > 0}.

This page as a plain text file.
%I A327258 #19 Sep 30 2019 10:43:47
%S A327258 1,2,6,7,8,12,13,14,18,19,20,24,25,26,30,31,32,35,36,37,41,42,43,47,
%T A327258 48,49,53,54,55,59,60,61,65,66,67,70,71,72,76,77,78,82,83,84,88,89,90,
%U A327258 94,95,96,100,101,105,106,107,111,112,113,117,118,119,123,124,125
%N A327258 Positions of 1's in {A327256(n) : n > 0}.
%C A327258 Although a(n)/n->2, the sequence a(n)-2n appears to be unbounded.
%C A327258 Positive integers k such that A327256(k) = 1. - _Jianing Song_, Sep 30 2019
%H A327258 Clark Kimberling and Jianing Song, <a href="/A327258/b327258.txt">Table of n, a(n) for n = 1..10000</a>
%t A327258 r = Sqrt[8]; z = 300;
%t A327258 t = Table[Floor[2 n r] - 2 Floor[n*r], {n, 0, z}]  (* {A327256(n) : n > 0} *)
%t A327258 Flatten[Position[t, 0]]  (* A327257 *)
%t A327258 Flatten[Position[t, 1]]  (* A327258 *)
%Y A327258 Cf. A327256, A327257 (complement).
%K A327258 nonn,easy
%O A327258 1,2
%A A327258 _Clark Kimberling_, Sep 03 2019
%E A327258 Corrected by _Jianing Song_, Sep 29 2019