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.

A136193 Irregular array read by rows: row n contains the products of each pair of consecutive positive divisors of n.

This page as a plain text file.
%I A136193 #13 Apr 09 2014 10:17:01
%S A136193 2,3,2,8,5,2,6,18,7,2,8,32,3,27,2,10,50,11,2,6,12,24,72,13,2,14,98,3,
%T A136193 15,75,2,8,32,128,17,2,6,18,54,162,19,2,8,20,50,200,3,21,147,2,22,242,
%U A136193 23,2,6,12,24,48,96,288,5,125,2,26,338,3,27,243
%N A136193 Irregular array read by rows: row n contains the products of each pair of consecutive positive divisors of n.
%C A136193 The first listed row is row 2. Row n contains d(n)-1 (= A032741(n)) terms, where d(n) is the number of positive divisors of n.
%e A136193 The positive divisors of 20 are 1,2,4,5,10,20. 1*2=2. 2*4=8. 4*5=20. 5*10=50. 10*20=200. So row 20 is (2,8,20,50,200).
%e A136193 The first few rows of the triangle are:
%e A136193 2;
%e A136193 3;
%e A136193 2, 8;
%e A136193 5;
%e A136193 2, 6, 18;
%e A136193 7;
%e A136193 2, 8, 32;
%e A136193 ...
%p A136193 with(numtheory): a:=proc(n) local div: div:=divisors(n): seq(div[j]*div[j+1], j=1..tau(n)-1) end proc: for n from 2 to 25 do a(n) end do; # yields sequence as a two-dimensional array - _Emeric Deutsch_, Jan 08 2008
%t A136193 Flatten[Table[Times@@@Partition[Divisors[n],2,1],{n,30}]]  (* _Harvey P. Dale_, Apr 23 2011 *)
%o A136193 (PARI) tabf(nn) = {for (n = 2, nn, d = divisors(n); for (i = 1, #d - 1, print1(d[i]*d[i+1], ", ");););} \\ _Michel Marcus_, Feb 10 2014
%Y A136193 Cf. A032741, A078730, A136195, A136181.
%K A136193 nonn,tabf
%O A136193 2,1
%A A136193 _Leroy Quet_, Dec 20 2007; corrected Jan 20 2008
%E A136193 More terms from _Emeric Deutsch_, Jan 08 2008
%E A136193 More terms from _Michel Marcus_, Feb 10 2014