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.

A077289 Triangular numbers that are 1/6 of another triangular number.

This page as a plain text file.
%I A077289 #34 Oct 01 2021 11:26:50
%S A077289 0,1,6,105,595,10296,58311,1008910,5713890,98862891,559902916,
%T A077289 9687554415,54864771885,949281469786,5376187741821,93019896484620,
%U A077289 526811533926580,9115000574022981,51622154137063026,893177036357767525,5058444293898249975,87522234562487194476
%N A077289 Triangular numbers that are 1/6 of another triangular number.
%C A077289 The triangular numbers multiplied by 6 are in A077290.
%H A077289 Colin Barker, <a href="/A077289/b077289.txt">Table of n, a(n) for n = 0..1000</a>
%H A077289 Vladimir Pletser, <a href="https://arxiv.org/abs/2102.13494">Triangular Numbers Multiple of Triangular Numbers and Solutions of Pell Equations</a>, arXiv:2102.13494 [math.NT], 2021.
%H A077289 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (1,98,-98,-1,1).
%F A077289 Let b(n) be A077288. Then a(n)=b(n)*(b(n)+1)/2.
%F A077289 G.f.: -x*(x^2+5*x+1) / ((x-1)*(x^2-10*x+1)*(x^2+10*x+1)). - _Colin Barker_, Jul 02 2013
%F A077289 a(n) = 98*a(n-2) - a(n-4) + 7. - _Vladimir Pletser_, Feb 19 2021
%F A077289 96*a(n) = 9*A072256(n+1) -2*(-1)^n*A054320(n) -7. - _R. J. Mathar_, Oct 01 2021
%e A077289 b(3)=14 so a(3) = 14*15/2 = 105, etc.
%p A077289 f := gfun:-rectoproc({a(-2) = 1, a(-1) = 0, a(0) = 0, a(1) = 1, a(n) = 98*a(n-2)-a(n-4)+7}, a(n), remember); map(f, [`$`(0 .. 1000)])[]; # _Vladimir Pletser_, Feb 19 2021
%t A077289 tr6Q[n_]:= IntegerQ[1/2 (Sqrt[1+48n]-1)]; Select[Accumulate[ Range[0,1380000]],tr6Q]  (* _Harvey P. Dale_, Apr 21 2011 *)
%o A077289 (PARI)
%o A077289 T(n)=n*(n+1)\2;
%o A077289 istriang(n)=issquare(8*n+1);
%o A077289 for(n=0, 10^10, t=T(n); if ( t%6==0 && istriang(t\6), print1(t\6, ", ") ) );
%o A077289 \\ _Joerg Arndt_, Jul 03 2013
%o A077289 (PARI) concat(0, Vec(-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
%Y A077289 Cf. A077288, A077290, A077291.
%K A077289 easy,nonn
%O A077289 0,3
%A A077289 Bruce Corrigan (scentman(AT)myfamily.com), Nov 03 2002