login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A077290
Triangular numbers that are 6 times other triangular numbers.
11
0, 6, 36, 630, 3570, 61776, 349866, 6053460, 34283340, 593177346, 3359417496, 58125326490, 329188631310, 5695688818716, 32257126450926, 558119378907720, 3160869203559480, 54690003444137886, 309732924822378156, 5359062218146605150, 30350665763389499850
OFFSET
0,2
FORMULA
a(n) = 6*A077289(n).
G.f.: -6*x*(x^2+5*x+1) / ((x-1)*(x^2-10*x+1)*(x^2+10*x+1)). - Colin Barker, Jul 02 2013
a(n) = 98*a(n-2) - a(n-1) + 42. - Vladimir Pletser, Feb 20 2021
EXAMPLE
The k-th triangular number is T(k) = k*(k+1)/2, so T(35)/T(14) = (35*36/2)/(14*15/2) = 630/105 = 6, so T(35)=630 is a term. - Jon E. Schoenfield, Feb 20 2021
MAPLE
f := gfun:-rectoproc({a(-2) = 6, a(-1) = 0, a(0) = 0, a(1) = 6, a(n) = 98*a(n-2)-a(n-4)+42}, a(n), remember); map(f, [`$`(0 .. 1000)])[]; # Vladimir Pletser, Feb 20 2021
MATHEMATICA
CoefficientList[Series[-6 x (x^2 + 5 x + 1)/((x - 1) (x^2 - 10 x + 1) (x^2 + 10 x + 1)), {x, 0, 20}], x] (* Michael De Vlieger, Apr 21 2021 *)
PROG
(PARI)
T(n)=n*(n+1)\2;
istriang(n)=issquare(8*n+1);
for(n=0, 10^10, t=T(n); if ( t%6==0 && istriang(t\6), print1(t, ", ") ) );
\\ Joerg Arndt, Jul 03 2013
(PARI) concat(0, Vec(-6*x*(x^2+5*x+1) / ((x-1)*(x^2-10*x+1)*(x^2+10*x+1)) + O(x^100))) \\ Colin Barker, May 15 2015
CROSSREFS
Subsequence of A000217.
Sequence in context: A367488 A339300 A296389 * A222780 A206636 A244841
KEYWORD
easy,nonn
AUTHOR
Bruce Corrigan (scentman(AT)myfamily.com), Nov 03 2002
EXTENSIONS
More terms from Joerg Arndt, Jul 03 2013
STATUS
approved