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.

User: Denis Borris

Denis Borris's wiki page.

Denis Borris has authored 2 sequences.

A130748 Place n points on each of the three sides of a triangle, 3n points in all; a(n) = number of nondegenerate triangles that can be constructed using these points (plus the 3 original vertices) as vertices.

Original entry on oeis.org

17, 72, 190, 395, 711, 1162, 1772, 2565, 3565, 4796, 6282, 8047, 10115, 12510, 15256, 18377, 21897, 25840, 30230, 35091, 40447, 46322, 52740, 59725, 67301, 75492, 84322, 93815, 103995, 114886, 126512, 138897, 152065, 166040, 180846, 196507, 213047, 230490
Offset: 1

Author

Denis Borris, Jul 12 2007

Keywords

Comments

Define b(1)=1 and b(n) = a(n-1) for n>1. Then (b(n)) is the principal diagonal of the convolution array A213833. - Clark Kimberling, Jul 04 2012

Examples

			5 points are put on each side of a triangle (n = 5); we then have 18 vertices to construct with: 5 * 3 + 3 originals. The number of total arrangements = combi(18,3) : combi[3(n+1),3]. But these include degenerates along the 3 sides: 7 points on each side, so combi(7,3) on each side : 3 * combi[n+2, 3] combi[18,3] - 3 * combi[7,3] = 816 - 105 = 711.
		

Crossrefs

Cf. A002414, A213833, A220084 (for a list of numbers of the form n*P(k,n)-(n-1)*P(k,n-1), where P(k,n) is the n-th k-gonal pyramidal number).
Cf. A260260 (comment). [Bruno Berselli, Jul 22 2015]

Programs

Formula

a(n) = C(3*(n+1),3) - 3*C(n+2,3) where n>0.
a(n) = (n+1)*A002414(n+1) - n*A002414(n). - Bruno Berselli, Dec 11 2012
a(n) = (8*n^3 + 15*n^2 + 9*n + 2)/2. - Charles R Greathouse IV, Feb 14 2013
From Elmo R. Oliveira, Aug 25 2025: (Start)
G.f.: x*(17 + 4*x + 4*x^2 - x^3)/(x-1)^4.
E.g.f.: -1 + exp(x)*(2 + 32*x + 39*x^2 + 8*x^3)/2.
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n > 4. (End)

Extensions

More terms from Wesley Ivan Hurt, Jan 28 2014

A042983 Numbers n > 99 with following property: form a sequence whose initial terms are the t digits of n, later terms given by rule b(i+1) = b(i) + product of t-1 previous terms; then n itself appears in the sequence.

Original entry on oeis.org

205, 302, 1220, 1757, 3505, 4484, 59445, 80005, 99543, 393544, 1545283, 31593249, 33252489, 184577126, 139316682243, 793957132718, 3827180840962
Offset: 1

Author

Keywords

Comments

a(18) > 10^13. - Giovanni Resta, Oct 19 2013

Examples

			1757 is a 4-digit term since sequence is 1, 7, 5, 7, 1*7*5+7 =42, 7*5*7+42 = 287, 5*7*42+287 = 1757.
		

Crossrefs

Cf. A007629.

Extensions

a(15)-a(17) from Giovanni Resta, Oct 19 2013