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!)
A300715 Number of compositions (ordered partitions) of n into squares that do not divide n. 1
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 4, 3, 0, 0, 7, 6, 0, 0, 14, 10, 4, 0, 22, 20, 10, 0, 32, 39, 20, 0, 49, 70, 42, 0, 12, 116, 88, 0, 128, 156, 174, 11, 207, 3, 320, 0, 333, 551, 575, 0, 555, 914, 0, 0, 959, 1502, 1829, 44, 1691, 2486, 3192, 0, 3000, 4172, 4005 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,14
LINKS
EXAMPLE
a(21) = 4 because we have [9, 4, 4, 4], [4, 9, 4, 4], [4, 4, 9, 4] and [4, 4, 4, 9].
MAPLE
a:= proc(m) option remember; local b; b:= proc(n) option
remember; `if`(n=0, 1, add((s->`if`(s>n or irem(m, s)
=0, 0, b(n-s)))(j^2), j=2..isqrt(n))) end; b(m)
end:
seq(a(n), n=0..100); # Alois P. Heinz, Mar 11 2018
MATHEMATICA
Table[SeriesCoefficient[1/(1 - Sum[Boole[Mod[n, k] != 0 && IntegerQ[k^(1/2)]] x^k, {k, 1, n}]), {x, 0, n}], {n, 0, 75}]
CROSSREFS
Sequence in context: A226728 A244140 A091227 * A035444 A244141 A152489
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 August 25 17:34 EDT 2024. Contains 375442 sequences. (Running on oeis4.)