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.

A161983 Irregular triangle read by rows: the group of 2n + 1 integers starting at A014105(n).

This page as a plain text file.
%I A161983 #47 Sep 07 2021 04:10:33
%S A161983 0,3,4,5,10,11,12,13,14,21,22,23,24,25,26,27,36,37,38,39,40,41,42,43,
%T A161983 44,55,56,57,58,59,60,61,62,63,64,65,78,79,80,81,82,83,84,85,86,87,88,
%U A161983 89,90,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,136,137
%N A161983 Irregular triangle read by rows: the group of 2n + 1 integers starting at A014105(n).
%C A161983 The squares of numbers in each row can be gathered in an equation with the first n terms on one side, the next n+1 terms on the other. The third row, for example, could be rendered as 10^2 + 11^2 + 12^2 = 13^2 + 14^2.
%C A161983 This sequence contains all nonnegative integers that are within a distance of n from 2n^2 + 2n where n is any nonnegative integer. The nonnegative integers that are not in this sequence are of the form 2n^2 + k where n is any positive integer and -n <= k <= n-1. Also, when n is the product of two consecutive integers, a(n) = 2n; for example, a(20) = 40. See explicit formulas for the sequence in the formula section below. - _Dennis P. Walsh_, Aug 09 2013
%C A161983 Numbers k with the property that the largest Dyck path of the symmetric representation of sigma(k) has a central valley, n > 0. (Cf. A237593.) - _Omar E. Pol_, Aug 28 2018
%H A161983 Michael Boardman, <a href="http://www.jstor.org/stable/2691496">Proof Without Words: Pythagorean Runs</a>, Math. Mag., 73 (2000), 59.
%F A161983 As a triangle, T(n,k) = 2n^2 + 2n + k where -n <= k <= n and n = 0,1,... - _Dennis P. Walsh_, Aug 09 2013
%F A161983 As sequence, a(n) = n + floor(sqrt(n))*(floor(sqrt(n)) + 1); equivalently, a(n) = n + A000196(n)*(A000196(n)+1). - _Dennis P. Walsh_, Aug 09 2013
%e A161983 Triangle begins:
%e A161983    0;
%e A161983    3,  4,  5;
%e A161983   10, 11, 12, 13, 14;
%e A161983   21, 22, 23, 24, 25, 26, 27;
%e A161983   36, 37, 38, 39, 40, 41, 42, 43, 44;
%e A161983   55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65;
%e A161983   78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90;
%e A161983 ...
%p A161983 seq(seq(2*n^2+2*n+k,k=-n..n),n=0..10); # _Dennis P. Walsh_, Aug 09 2013
%p A161983 seq(n+floor(sqrt(n))*(floor(sqrt(n))+1),n=0..100); # _Dennis P. Walsh_, Aug 09 2013
%Y A161983 Union of A014105 and A317304.
%Y A161983 The complement is A162917.
%Y A161983 Column 1 gives A014105.
%Y A161983 Right border gives A014106.
%Y A161983 Row sums give the even-indexed terms of A027480.
%Y A161983 Cf. A000290, A014105, A014106, A027480, A162917, A237593, A317304.
%K A161983 nonn,tabf
%O A161983 0,2
%A A161983 _Juri-Stepan Gerasimov_, Jun 23 2009
%E A161983 Definition clarified, 8th row terms corrected by _R. J. Mathar_, Jul 19 2009