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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A023873 G.f.: prod_{k=1..inf} (1 - x^k)^(-k^4). 2
1, 1, 17, 98, 490, 2411, 11940, 56093, 256274, 1140980, 4977222, 21273772, 89281011, 368408970, 1496993290, 5996312751, 23700208290, 92510062036, 356887002352, 1361671469470, 5141380256124, 19221678032134, 71190778935805, 261320839754142, 951091521384860 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Alois P. Heinz, Table of n, a(n) for n = 0..800

G. Almkvist, Asymptotic formulas and generalized Dedekind sums, Exper. Math., 7 (No. 4, 1998), pp. 343-359.

MAPLE

with (numtheory):

a:= proc(n) option remember; `if`(n=0, 1,

      add (add (d*d^4, d=divisors(j)) *a(n-j), j=1..n)/n)

    end:

seq (a(n), n=0..25);  # Alois P. Heinz, Nov 02 2012

MATHEMATICA

max = 27; Series[ Product[1/(1 - x^k)^k^4, {k, 1, max}], {x, 0, max}] // CoefficientList[#, x] & (* Jean-François Alcover, Mar 05 2013 *)

CROSSREFS

Column k=4 of A144048.

Sequence in context: A044649 A160827 A000538 * A098997 A139497 A139913

Adjacent sequences:  A023870 A023871 A023872 * A023874 A023875 A023876

KEYWORD

nonn

AUTHOR

Olivier Gérard

EXTENSIONS

Definition corrected by Franklin T. Adams-Watters and R. J. Mathar, Dec 04 2006

STATUS

approved

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 May 19 06:05 EDT 2013. Contains 225428 sequences.