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.

A057028 Triangle T read by rows: row n consists of the numbers C(n,2)+1 to C(n+1,2); numbers in odd-numbered places form a decreasing sequence and the others an increasing sequence.

This page as a plain text file.
%I A057028 #14 Jul 02 2025 23:15:59
%S A057028 1,3,2,5,6,4,9,8,10,7,13,14,12,15,11,19,18,20,17,21,16,25,26,24,27,23,
%T A057028 28,22,33,32,34,31,35,30,36,29,41,42,40,43,39,44,38,45,37,51,50,52,49,
%U A057028 53,48,54,47,55,46,61,62,60,63,59,64,58,65,57,66,56
%N A057028 Triangle T read by rows: row n consists of the numbers C(n,2)+1 to C(n+1,2); numbers in odd-numbered places form a decreasing sequence and the others an increasing sequence.
%H A057028 Michael De Vlieger, <a href="/A057028/b057028.txt">Table of n, a(n) for n = 1..10000</a>
%H A057028 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>
%e A057028 Rows: 1; 3,2; 5,6,4; 9,8,10,7; ...
%t A057028 nn = 12; t = Table[Range[Binomial[n, 2] + 1, Binomial[n + 1, 2]], {n, nn}]; Reverse /@ Table[t[[n, If[OddQ@ k, Ceiling[k/2], -k/2] ]], {n, nn}, {k, n}] // Flatten (* _Michael De Vlieger_, Jul 02 2016 *)
%Y A057028 Reflection of the array in A057027 about its central column, a permutation of the natural numbers.
%Y A057028 Inverse permutation: A064789.
%K A057028 nonn,tabl
%O A057028 1,2
%A A057028 _Clark Kimberling_, Jul 28 2000