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!)
A110904 Integers that can be expressed as a product of triangular numbers in 3 different ways. 2

%I #11 Nov 29 2015 21:30:05

%S 630,3780,14850,16380,21420,114660,131670,159390,178200,234360,401940,

%T 478800,523260,556920,582120,712530,749700,835380,1455300,1753290,

%U 1936935,2086920,2162160,2633400,2841300,3828825,4791150,5821200,6056820,6380010,6396390,6486480

%N Integers that can be expressed as a product of triangular numbers in 3 different ways.

%H Chai Wah Wu, <a href="/A110904/b110904.txt">Table of n, a(n) for n = 1..1007</a>

%e 835380 = 91*9180 = 153*5460 = 630*1326.

%o (Python)

%o from __future__ import division

%o mmax = 10**3

%o tmax, A110904_dict = mmax*(mmax+1)//2, {}

%o ti = 0

%o for i in range(1,mmax+1):

%o ti += i

%o p = ti*i*(i-1)//2

%o for j in range(i,mmax+1):

%o p += ti*j

%o if p <= tmax:

%o A110904_dict[p] = A110904_dict[p]+1 if p in A110904_dict else 1

%o else:

%o break

%o A110904_list = sorted([i for i in A110904_dict if A110904_dict[i] == 3]) # _Chai Wah Wu_, Nov 29 2015

%Y Subsequence of A264961 and of A085780.

%K nonn

%O 1,1

%A Luke T Pebody (ltp1000(AT)cam.ac.uk), Sep 21 2005

%E a(19)-a(20) from _R. J. Mathar_, Nov 29 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 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)