cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A367253 The number of ways of making change for 5n cents with Canadian coins (5, 10, 25, 100, 200).

Original entry on oeis.org

1, 1, 2, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 14, 16, 18, 20, 22, 24, 26, 30, 32, 36, 38, 42, 46, 50, 54, 58, 62, 68, 72, 78, 82, 88, 94, 100, 106, 112, 118, 128, 134, 144, 150, 160, 170, 180, 190, 200, 210, 224, 234, 248, 258, 272, 286, 300, 314, 328, 342, 362
Offset: 0

Views

Author

Johann Peters, Nov 11 2023

Keywords

Comments

Since 2012 the Canadian penny has been discontinued. The coins now commonly used are the nickel (5 cents), the dime (10 cents), the quarter (25 cents), the loonie (100 cents), and the toonie (200 cents).
Number of partitions of n into parts 1, 2, 5, 20, 40. - Alois P. Heinz, Nov 11 2023

Crossrefs

Programs

  • Mathematica
    a[n_]:=Length[FrobeniusSolve[{5,10,25,100,200},5*n]]; a/@Range[0,100] (* Ivan N. Ianakiev, Nov 21 2023 *)
    CoefficientList[Series[1/((1-x)*(1-x^2)*(1-x^5)*(1-x^20)*(1-x^40)),{x,0,1000}],x] (* Ray Chandler, Nov 22 2023 *)

Formula

From Alois P. Heinz, Nov 11 2023: (Start)
G.f.: 1/((1-x)*(1-x^2)*(1-x^5)*(1-x^20)*(1-x^40)).
a(20*n) = A307849(n). (End)