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!)
A076384 Numbers n such that sum of digits in base 6 is a divisor of sum of prime divisors (A008472). 1
2, 3, 5, 6, 25, 30, 36, 38, 39, 42, 60, 78, 84, 90, 106, 114, 120, 122, 126, 130, 150, 152, 156, 171, 178, 180, 183, 186, 187, 194, 198, 216, 217, 218, 219, 221, 222, 228, 230, 240, 244, 252, 255, 258, 259, 260, 262, 264, 270, 287, 294, 297, 299, 300, 303, 321 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
A076384 := proc(n) local i, j, t, t1, sod, sopd; t := NULL; for i from 2 to n do t1 := i; sod := 0; while t1 <> 0 do sod := sod + (t1 mod 6); t1 := floor(t1/6); od; sopd := 0; j := 1; while ithprime(j) <= i do if i mod ithprime(j) = 0 then sopd := sopd+ithprime(j); fi; j := j+1; od; if sopd mod sod = 0 then t := t, i; fi; od; t; end;
MATHEMATICA
Select[Range[2, 350], Divisible[Total[Transpose[FactorInteger[#]][[1]]], Total[ IntegerDigits[#, 6]]]&] (* Harvey P. Dale, May 26 2013 *)
CROSSREFS
Sequence in context: A131599 A263650 A345709 * A261579 A270517 A124648
KEYWORD
nonn,base
AUTHOR
Floor van Lamoen, Oct 08 2002
STATUS
approved

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 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)