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!)
A270774 a(n) = (A005706(n) - A194459(n))/5. 0

%I #18 Dec 18 2023 08:26:02

%S 0,0,0,0,0,1,1,1,1,1,3,3,3,3,3,6,6,6,6,6,10,10,10,10,10,16,17,18,19,

%T 20,23,24,25,26,27,32,33,34,35,36,43,44,45,46,47,56,57,58,59,60,73,76,

%U 79,82,85,91,94,97,100,103,112,115,118,121

%N a(n) = (A005706(n) - A194459(n))/5.

%C A combinatorial interpretation is given in the Edgar link.

%H G. E. Andrews, A. S. Fraenkel, and J. A. Sellers, <a href="http://www.jstor.org/stable/10.4169/amer.math.monthly.122.9.880">Characterizing the number of m-ary partitions modulo m</a>, The American Mathematical Monthly, Vol. 122, No. 9 (November 2015), pp. 880-885.

%H G. E. Andrews, A. S. Fraenkel, and J. A. Sellers, <a href="https://georgeandrews1.github.io/pdf/300.pdf">Characterizing the number of m-ary partitions modulo m</a>.

%H Tom Edgar, <a href="http://arxiv.org/abs/1603.00085">The distribution of the number of parts of m-ary partitions modulo m.</a>, arXiv:1603.00085 [math.CO], 2016.

%F Let b(0) = 1 and b(n) = b(n-1) + b(floor(n/5)) and let c(n) = Product_{i=0..k}(n_i+1) where n = Sum_{i=0..k}n_i*5^i is the base 5 representation of n. Then a(n) = (1/5)*(b(n) - c(n)).

%t b[0] = 1; b[n_] := b[n] = b[n-1] + b[Floor[n/5]];

%t c[n_] := If[OddQ[n], 2 Count[Table[Binomial[n, k], {k, 0, (n-1)/2}], c_ /; !Divisible[c, 5]], 2 Count[Table[Binomial[n, k], {k, 0, (n-2)/2}], c_ /; !Divisible[c, 5]] + Boole[!Divisible[Binomial[n, n/2], 5]]];

%t a[n_] := (b[n] - c[n])/5;

%t Table[a[n], {n, 0, 63}] (* _Jean-François Alcover_, Feb 15 2019 *)

%o (Sage)

%o def b(n):

%o A=[1]

%o for i in [1..n]:

%o A.append(A[i-1] + A[i//5])

%o return A[n]

%o print([(b(n)-prod(x+1 for x in n.digits(5)))/5 for n in [0..63]])

%Y Cf. A005706, A194459, A268127, A268128, A268443.

%K nonn

%O 0,11

%A _Tom Edgar_, Mar 22 2016

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 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)