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.

Showing 1-2 of 2 results.

A093911 Left side of irregular triangle of natural numbers in which the n-th row has at least n terms and every row product is a multiple of the previous.

Original entry on oeis.org

1, 2, 4, 7, 11, 17, 27, 47, 87, 167, 327, 635, 1263, 2519, 5007, 10007, 19947, 39875, 79739, 159399, 318779, 637503, 1274999, 2549979, 5099903, 10199787, 20399535, 40799063, 81598083, 163196135, 326392259, 652784499, 1305568943, 2611137839
Offset: 1

Views

Author

Amarnath Murthy, Apr 24 2004

Keywords

Examples

			The first 5 groups are (1), (2,3), (4,5,6), (7,8,9,10),
(11,12,13,14,15,16). The 5th group ends with 16 because
11*12*13*14*15*16 is divisible by 7*8*9*10, but 11*12*13*14*15 is not.
		

Crossrefs

Programs

  • Mathematica
    a = {{1, 1}, {2, 2}}; Do[k = Last@ a[[i]]; While[! Divisible[Pochhammer[Total@ a[[i]], k], Pochhammer @@ a[[i]]], k++]; AppendTo[a, {Total@ a[[i]], k}], {i, 2, 16}]; Last /@ a (* Michael De Vlieger, Dec 15 2016 *)

Extensions

Edited and extended by David Wasserman, Mar 27 2006

A093913 Ratio of products of successive rows of irregular triangle defined in A093911.

Original entry on oeis.org

6, 20, 42, 1144, 3343050, 707866293437614080, 322686644032484531917367528014184448000000
Offset: 1

Views

Author

Amarnath Murthy, Apr 24 2004

Keywords

Comments

Next term has 95 digits.

Crossrefs

Formula

a(n) = A093910(n+1)/A093910(n).

Extensions

Edited and extended by David Wasserman, Mar 27 2006
Showing 1-2 of 2 results.