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.

A248612 Numbers k such that A248610(k+1) = A248610(k) + 1.

This page as a plain text file.
%I A248612 #4 Oct 15 2014 21:02:13
%S A248612 2,4,6,7,9,10,12,13,15,16,17,19,20,21,23,24,25,27,28,29,31,32,33,35,
%T A248612 36,37,39,40,41,43,44,45,46,48,49,50,52,53,54,56,57,58,59,61,62,63,65,
%U A248612 66,67,68,70,71,72,74,75,76,77,79,80,81,83,84,85,86,88,89
%N A248612 Numbers k such that A248610(k+1) = A248610(k) + 1.
%H A248612 Clark Kimberling, <a href="/A248612/b248612.txt">Table of n, a(n) for n = 1..1500</a>
%e A248612 (A248610(k+1) - A248610(k)) = (0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, ...), so that A248611 = (1, 3, 5, 8, 11, 14, 18, 22, 26, ..) and A248612 = (2, 4, 6, 7, 9, 10, 12, 13, ...).
%t A248612 z = 300; p[k_] := p[k] = Sum[1/((h^2)*Binomial[2 h, h]), {h, 1, k}]
%t A248612 d = N[Table[Pi^2/18 - p[k], {k, 1, z/5}], 12]
%t A248612 f[n_] := f[n] = Select[Range[z], Pi^2/18 - p[#] < 1/3^n &, 1]
%t A248612 u = Flatten[Table[f[n], {n, 1, z}]]  (* A248610 *)
%t A248612 d = Differences[u]
%t A248612 v = Flatten[Position[d, 0]]  (* A248611 *)
%t A248612 w = Flatten[Position[d, 1]]  (* A248612 *)
%Y A248612 Cf. A248610, A248611, A248608.
%K A248612 nonn,easy
%O A248612 1,1
%A A248612 _Clark Kimberling_, Oct 10 2014