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!)
A300706 Number of compositions (ordered partitions) of n into squarefree parts that do not divide n. 4
1, 0, 0, 0, 0, 2, 0, 5, 2, 5, 2, 27, 2, 67, 12, 16, 28, 366, 4, 848, 28, 182, 153, 4591, 20, 4172, 554, 2217, 558, 57695, 6, 134118, 3834, 14629, 6972, 97478, 258, 1684852, 24467, 120869, 5308, 9104710, 189, 21165023, 124427, 117017, 297830, 114373157, 3394, 126979537, 72158, 7655405 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
EXAMPLE
a(18) = 4 because we have [13, 5], [11, 7], [7, 11] and [5, 13].
MAPLE
with(numtheory):
a:= proc(m) option remember; local b; b:= proc(n) option
remember; `if`(n=0, 1, add(`if`(not issqrfree(j) or
irem(m, j)=0, 0, b(n-j)), j=2..n)) end; b(m)
end:
seq(a(n), n=0..70); # Alois P. Heinz, Mar 11 2018
MATHEMATICA
Table[SeriesCoefficient[1/(1 - Sum[Boole[Mod[n, k] != 0 && SquareFreeQ[k]] x^k, {k, 1, n}]), {x, 0, n}], {n, 0, 51}]
CROSSREFS
Sequence in context: A267213 A261805 A300703 * A351481 A014842 A360559
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 11 2018
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 25 08:20 EDT 2024. Contains 371964 sequences. (Running on oeis4.)