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!)
A253651 Triangular numbers that are the product of a triangular number and a prime number. 4

%I #25 Jul 23 2023 01:54:18

%S 0,3,6,15,21,45,66,78,105,190,210,231,435,465,630,861,903,1035,1326,

%T 2415,2556,2628,3003,3570,4005,4950,5460,5565,5995,7140,8646,8778,

%U 9870,12246,16471,16836,17205,17391,17766,20100,22155,26565,26796,28680,28920,30381,32131,33411,33930,36856

%N Triangular numbers that are the product of a triangular number and a prime number.

%H Harvey P. Dale, <a href="/A253651/b253651.txt">Table of n, a(n) for n = 1..259</a> (all terms up to and including the 10000th triangular number)

%e 190 is in the sequence because is triangular (190=19*20/2) and 190=10*19, with 10 triangular number and 19 prime number.

%p N:= 10^5: # to get all terms <= N

%p Primes:= select(isprime, [2,seq(2*k+1,k=1..N/3)]):

%p select(t -> issqr(1+8*t), {seq(seq(a*(a+1)/2*p, a = 2 .. floor(sqrt(2*N/p))), p = Primes)});

%p # if using Maple 11 or earlier, uncomment the next line

%p # sort(convert(%,list)); # _Robert Israel_, Jan 07 2015

%t Join[{0},Module[{nn=300,trs},trs=Accumulate[Range[nn]];Select[ trs,AnyTrue[ #/trs,PrimeQ]&]]] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Oct 16 2018 *)

%o (PARI) {i=1; j=2;print1(0,", "); while(i<=10^5, k=1; p=2; c=0; while(k<i&&c==0, if(i/k==i\k&&isprime(i/k)&&i/k>1, c=k); if(c>0, print1(i, ", ")); k+=p; p+=1); i+=j; j+=1)}

%Y Cf. A029549 (T is 2*t), A076140 (T is 3*t), A225503 (first T to be prime(n)*t)).

%Y Cf. A188630, A253650, A253652, A253653.

%K nonn

%O 1,2

%A _Antonio Roldán_, Jan 07 2015

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 April 25 09:26 EDT 2024. Contains 371967 sequences. (Running on oeis4.)