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!)
A225881 Numbers k that are equal to the product of the largest triangular proper divisor of k and the sum of all triangular proper divisors of k. 3

%I #17 Jul 04 2021 11:30:26

%S 285,5016,24021,142350,145665,154602,204450,318912,474192,843402,

%T 1196690,1283664,1670250,2739021,3412950,4255776,5052135,6054880,

%U 6272140,6433440,6493728,6650712,6728190,7156044,7323030,7797750,9379350,10108840,10188864

%N Numbers k that are equal to the product of the largest triangular proper divisor of k and the sum of all triangular proper divisors of k.

%C A triangular proper divisor of k is a positive triangular number less than k that divides k. - _N. J. A. Sloane_, Jul 04 2021

%H Donovan Johnson, <a href="/A225881/b225881.txt">Table of n, a(n) for n = 1..300</a>

%e 5016 = 66*(66+6+3+1).

%t pltQ[n_]:=Module[{d=Select[Divisors[n],OddQ[Sqrt[1+8#]]&]},n == Total[ d] Last[d]]; Select[Range[2,205000],pltQ] (* The program generates the first 7 terms of the sequence. To generate more, increase the Range constant. *) (* _Harvey P. Dale_, Jul 03 2021 *)

%o (PARI)

%o msumprop(n)={k=1;i=1;s=0;d=1;while(k<=n\2,if(n/k==n\k,d=k;s+=d);i+=1;k+=i);s*=d;return(s)}

%o {for (n=2,10^7,if(n==msumprop(n),print(n)))}

%Y Cf. A000217, A225880, A225882.

%K nonn

%O 1,1

%A _Antonio Roldán_, May 19 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 September 6 10:38 EDT 2024. Contains 375712 sequences. (Running on oeis4.)