login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A110590 Balanced numbers n (A020492) such that phi(n) is not divisible by 12. 1
1, 2, 3, 6, 12, 14, 15, 30, 264, 3828 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

The only balanced numbers such that sigma(n) is not divisible by 12 are 1, 2, 3.

FORMULA

sigma(n)/phi(n) is an integer and phi(n) mod 12 > 0.

MAPLE

with(numtheory): BNM:=[]: for z from 1 to 1 do for n from 1 to 100000 do if phi(n) mod 12 > 0 and sigma(n) mod phi(n) = 0 then BNM:=[op(BNM), n] fi; od; od; BNM; # after 3828 there no others out to 2*10^6.

MATHEMATICA

fQ[n_] := Block[{ds = DivisorSigma[1, n], ep = EulerPhi@n}, Mod[ep, 12] > 0 && IntegerQ[ds/ep]]; Do[ If[ fQ@n, Print@n], {n, 4*10^8}] (from Robert G. Wilson v (rgwv(at)rgwv.com), Jun 19 2006)

CROSSREFS

Cf. A000010, A000203, A020492.

Sequence in context: A015765 A015771 A020492 * A111271 A070926 A124485

Adjacent sequences:  A110587 A110588 A110589 * A110591 A110592 A110593

KEYWORD

nonn

AUTHOR

Walter A. Kehowski (wkehowski(AT)cox.net), Sep 13 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 06:09 EST 2012. Contains 205570 sequences.