OFFSET
1,84
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Perfect Number
Eric Weisstein's World of Mathematics, Partition
Wikipedia, Perfect number
MATHEMATICA
f[x_] := Product[-(1/(-1 + x^i)), {i, {6, 28, 496, 8128, 33550336}}]; CoefficientList[Series[f[x], {x, 0, 1000}], x] (* Ben Branman, Jan 07 2012 *)
PROG
(Haskell)
a097796 = p a000396_list where
p _ 0 = 1
p ks'@(k:ks) m = if m < k then 0 else p ks' (m - k) + p ks m
-- Reinhard Zumkeller, Jan 20 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 25 2004
STATUS
approved