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.

Showing 1-5 of 5 results.

A086488 A086487(n)/S where S is the sum of the prime divisors.

Original entry on oeis.org

1, 0, 3, 34, 91, 1430, 12441, 125970, 3095547, 67083870, 1560337779, 42483256530, 1278362451795, 50174604862382, 3146934482482791, 109416477603465890, 4497598794363331965, 327313882010942897070, 14916466618879283766165
Offset: 1

Views

Author

Amarnath Murthy, Jul 28 2003

Keywords

Examples

			a(3) = 3. A086487(3) = 30 /(2+3+5) = 3.
		

Crossrefs

Formula

a(n) = A086487(n)/A008472(A086487(n)). - David Wasserman, Mar 09 2005

Extensions

More terms from David Wasserman, Mar 09 2005

A086486 Numbers k such that the sum of the distinct prime divisors divides rad(k)=A007947(k).

Original entry on oeis.org

2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 27, 29, 30, 31, 32, 37, 41, 43, 47, 49, 53, 59, 60, 61, 64, 67, 70, 71, 73, 79, 81, 83, 89, 90, 97, 101, 103, 105, 107, 109, 113, 120, 121, 125, 127, 128, 131, 137, 139, 140, 149, 150, 151, 157, 163, 167
Offset: 1

Views

Author

Amarnath Murthy, Jul 28 2003

Keywords

Comments

Every prime power is a member.
Numbers with exactly two distinct prime divisors are not members of the sequence. - Victoria A Sapko (vsapko(AT)canes.gsw.edu), Sep 23 2003
Numbers k such that A008472(k) divides A007947(k).

Examples

			30 is a member. The prime divisors of 30 are 2, 3 and 5 and 2+3+5 = 10, divides 30.
84, however, is not a member because the sum of its distinct prime divisors (2+3+7=12) does not divide the product of its distinct prime divisors (2*3*7=42), even though 12 does divide 84. - _Harvey P. Dale_, Nov 26 2011, based on a comment from _Ray Chandler_
		

Crossrefs

Cf. A086487, A066031. A proper subset of A089352.

Programs

  • Mathematica
    sdpQ[n_]:=Module[{dpds=Transpose[FactorInteger[n]][[1]]}, Divisible[ Times@@dpds,Total[dpds]]]; Select[Range[2,200],sdpQ] (* Harvey P. Dale, Nov 26 2011 *)

Extensions

More terms from Victoria A Sapko (vsapko(AT)canes.gsw.edu), Sep 23 2003
Edited by Franz Vrabec, Sep 03 2005

A104465 a(n) is the least k with n prime factors (counting multiplicity) such that the sum of these n factors divides k. First member of A036844 with n prime factors.

Original entry on oeis.org

2, 4, 27, 16, 72, 240, 288, 256, 2688, 3840, 4608, 13824, 30720, 61440, 73728, 65536, 294912, 983040, 4325376, 5898240, 11010048, 15728640, 18874368, 141557760, 169869312, 654311424, 1107296256, 1006632960, 2818572288, 4026531840
Offset: 1

Views

Author

David Wasserman, Mar 09 2005

Keywords

Comments

A001222(a(n)) = n; A001414(a(n)) divides a(n).

Examples

			a(5) = 72 = 2*2*2*3*3; 2+2+2+3+3 = 12 divides 72.
		

Crossrefs

A104466 a(n) is the least k with n distinct prime factors such that the sum of its prime factors (counting multiplicity) divides k, or 0 if no such k exists. First member of A036844 with n distinct prime factors.

Original entry on oeis.org

2, 0, 30, 840, 2730, 72930, 870870, 9699690, 340510170, 9592993410, 265257422430, 8624101075590, 304250263527210, 14299762385778870, 1164365758518632670, 43657174563782890110, 1987938667108592728530, 172494415819766906755890
Offset: 1

Views

Author

David Wasserman, Mar 09 2005

Keywords

Comments

A001221(a(n)) = n; A001414(a(n)) divides a(n). a(4) = 840; A086487(4) = 1122. This is probably the only difference between these two sequences.

Examples

			a(4) = 840 = 2^3*3*5*7; 2+2+2+3+5+7 = 21 divides 840.
		

Crossrefs

A340534 a(n) is the least product of n consecutive primes that is divisible by the sum of those primes, or 0 if there is no such product.

Original entry on oeis.org

2, 0, 30, 0, 15015, 0, 37182145, 9699690, 33426748355, 0, 3710369067405, 0, 304250263527210, 0, 37420578814667938361329, 0, 18598027670889965365580513, 0, 107254825578022430263302818471, 0, 44510752614879308559270669665465, 0, 267064515689275851355624017992790, 0, 116431182179248680450031658440253681535, 0
Offset: 1

Views

Author

J. M. Bergot and Robert Israel, Jan 10 2021

Keywords

Comments

a(27) > 10^225 if it is not 0.
If n is even, a(n) is either A002110(n) or 0.
a(n) = A002110(n) for n in A051838.

Examples

			a(5) = 15015 = 3*5*7*11*13 is the product of 5 consecutive primes and is divisible by 3+5+7+11+13 = 39.
		

Crossrefs

Programs

  • Maple
    f:= proc(n) local L,i,p;
       L:= [seq(ithprime(i),i=1..n)]:
       p:= convert(L,`*`);
       if n::even then
         if p mod convert(L,`+`) = 0 then return p else return 0 fi
       else
         do
           p:= convert(L,`*`);
           if p mod convert(L,`+`) = 0 then return p fi;
           if p > 10^225 then return FAIL fi;
           L:= [op(L[2..-1]),nextprime(L[-1])];
         od
       fi;
    end proc:
    map(f, [$1..26]);
Showing 1-5 of 5 results.