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!)
A056190 a(n) = Sum_{d|n and gcd(d, n/d)=1} binomial(n,d). 1
1, 3, 4, 5, 6, 42, 8, 9, 10, 308, 12, 728, 14, 3538, 3474, 17, 18, 48792, 20, 20370, 117632, 705686, 24, 737520, 26, 10400952, 28, 1204544, 30, 185903342, 32, 33, 193542210, 2333606816, 7049188, 94202222, 38, 35345264542, 8122434623 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A056045(n) for squarefree n, when all divisors are unitary.
EXAMPLE
n=100 has 9 divisors of which {1,4,25,100} are unitary, so a(100) = 100 + 3921225 + 242519269720337121015504 + 1.
MAPLE
a:= n-> add(`if`(igcd(d, n/d)=1, binomial(n, d), 0),
d=numtheory[divisors](n)):
seq(a(n), n=1..40); # Alois P. Heinz, Aug 25 2019
PROG
(PARI) a(n) = sumdiv(n, d, if (gcd(d, n/d)==1, binomial(n, d))); \\ Michel Marcus, Aug 25 2019
CROSSREFS
Cf. A056045.
Sequence in context: A281829 A083400 A154665 * A202702 A049465 A196122
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 02 2000
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 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)