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.

A287733 First differences of A069497.

Original entry on oeis.org

6, 30, 30, 12, 42, 90, 66, 24, 78, 150, 102, 36, 114, 210, 138, 48, 150, 270, 174, 60, 186, 330, 210, 72, 222, 390, 246, 84, 258, 450, 282, 96, 294, 510, 318, 108, 330, 570, 354, 120, 366, 630, 390, 132, 402, 690, 426, 144, 438, 750, 462, 156, 474, 810, 498, 168, 510, 870, 534
Offset: 1

Views

Author

Greg Huber, May 30 2017

Keywords

Comments

First differences of the subsequence of triangular numbers that are divisible by 6.
By definition, these numbers are themselves divisible by 6.

Examples

			The first triangular number divisible by 6 is 6, and the second triangular number divisible by 6 is 36.  Therefore a(2) = 36 - 6 = 30. (The zeroth triangular number divisible by 6 is taken to be 0.)
		

Crossrefs

Programs

  • Maple
    S:= [seq(seq((12*i+j)*(12*i+j+1)/2, j=[0,3,8,11]), i=0..50)]:
    S[2..-1]-S[1..-2]; # Robert Israel, May 30 2017
  • Mathematica
    Differences@ Select[Array[# (# + 1)/2 &, 180, 0], Mod[#, 6] == 0 &] (* Robert G. Wilson v, May 30 2017 *)
    Differences[Select[Accumulate[Range[0, 209]], Divisible[#, 6] &]] (* Alonso del Arte, May 31 2017 *)

Formula

G.f.: 6*(x^2+4*x+1)*(x^2-x+1)/((x-1)^2*(x^2+1)^2). - Robert Israel, May 30 2017

Extensions

More terms from Robert G. Wilson v, May 30 2017

A287746 First differences of A154293.

Original entry on oeis.org

1, 5, 5, 2, 7, 15, 11, 4, 13, 25, 17, 6, 19, 35, 23, 8, 25, 45, 29, 10, 31, 55, 35, 12, 37, 65, 41, 14, 43, 75, 47, 16, 49, 85, 53, 18, 55, 95, 59, 20, 61, 105, 65, 22, 67, 115, 71, 24, 73, 125, 77, 26, 79, 135, 83, 28, 85, 145, 89, 30, 91, 155, 95, 32, 97, 165, 101, 34, 103, 175
Offset: 1

Views

Author

Greg Huber, May 31 2017

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Accumulate[Range[0,300]]/6,IntegerQ]//Differences (* Harvey P. Dale, Feb 20 2020 *)

Formula

a(n) = A287733(n)/6.
Showing 1-2 of 2 results.