login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A226500 Triangular numbers representable as 3 * x^2. 1

%I #24 Mar 03 2016 22:52:13

%S 0,3,300,29403,2881200,282328203,27665282700,2710915376403,

%T 265642041604800,26030209161894003,2550694855824007500,

%U 249942065661590841003,24491771739980078410800,2399943688452386093417403,235169989696593857076494700,23044259046577745607403063203

%N Triangular numbers representable as 3 * x^2.

%H Colin Barker, <a href="/A226500/b226500.txt">Table of n, a(n) for n = 1..503</a>

%H <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (99,-99,1).

%F a(n) = 99*a(n-1) - 99*a(n-2) + a(n-3), for n > 3. a(n) = floor((49 + 20*sqrt(6))^(n-1)/32). - _Giovanni Resta_, Jun 09 2013

%F G.f.: 3*x^2*(1+x)/((1-x)*(1-98*x+x^2)); a(n)=3*A108741(n-1). - _Joerg Arndt_, Jun 10 2013

%F a(n) = (49+20*sqrt(6))^(-n)*(49+20*sqrt(6)-2*(49+20*sqrt(6))^n+(49-20*sqrt(6))*(49+20*sqrt(6))^(2*n))/32. - _Colin Barker_, Mar 03 2016

%t a[1]=0; a[2]=3; a[3]=300; a[n_] := a[n] = 99*(a[n-1] - a[n-2]) + a[n-3]; Array[a, 10] (* _Giovanni Resta_, Jun 09 2013 *)

%t Rest@ CoefficientList[Series[3 x^2 (1 + x)/((1 - x) (1 - 98 x + x^2)), {x, 0, 16}], x] (* or *)

%t 3 LinearRecurrence[{99, -99, 1}, {0, 1, 100}, 16] (* _Michael De Vlieger_, Mar 03 2016, latter after _Vincenzo Librandi_ at A108741 *)

%o (C)

%o #include <stdio.h>

%o #include <math.h>

%o typedef unsigned long long U64;

%o U64 isTriangular(U64 a) { // input must be < 1ULL<<63

%o U64 r = sqrt(a*2);

%o return (r*(r+1) == a*2);

%o }

%o int main() {

%o for (U64 j, i = 0; (j=i*i*3) < (1ULL<<63); i++)

%o if (isTriangular(j)) printf("%llu, ", j);

%o return 0;

%o }

%Y Cf. A029549 (triangular numbers representable as x^2 + x).

%Y Cf. A000217, A001219, A165892, A069017.

%K nonn,easy

%O 1,2

%A _Alex Ratushnyak_, Jun 09 2013

%E a(12)-a(15) from _Giovanni Resta_, Jun 09 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 29 23:34 EDT 2024. Contains 375520 sequences. (Running on oeis4.)