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.

A111627 T(2n, n+2)/n of A109626.

This page as a plain text file.
%I A111627 #4 Mar 30 2012 18:36:50
%S A111627 1,2,1,2,1,2,1,2,1,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,2,1,2,1,2,1,2,2,2,
%T A111627 1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,2,2,2,1,2,1,2,1,2,1,2,2,2,1,2,1,2,
%U A111627 2,2,1,2,2,2,2,2,1,2,1,2
%N A111627 T(2n, n+2)/n of A109626.
%C A111627 A sequence of just 1's and 2's.
%t A111627 f[n_] := f[n] = Block[{a}, a[0] = 1; a[l_] := a[l] = Block[{k = 1, s = Sum[ a[i]*x^i, {i, 0, l - 1}]}, While[ IntegerQ[ Last[ CoefficientList[ Series[(s + k*x^l)^(1/n), {x, 0, l}], x]]] != True, k++ ]; k]; Table[a[j], {j, 0, 128}]]; g[n_, m_] := f[n][[m]]; Table[ g[2n, n + 2]/n, {n, 52}]
%Y A111627 Cf. A109626.
%K A111627 nonn
%O A111627 1,2
%A A111627 _Paul D. Hanna_ and _Robert G. Wilson v_, Aug 02 2005