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!)
A349488 Number of unlabeled disconnected P-series with n elements. 6
0, 1, 2, 6, 16, 45, 115, 296, 733, 1801, 4338, 10380, 24531, 57622, 134317, 311465, 718297, 1649579, 3772448, 8597284, 19527774, 44225665, 99885035, 225032910, 505797776, 1134419571, 2539173978, 5672736196, 12650878942, 28165845957, 62609097765, 138963709623 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A349276(n) - A255047(n-1).
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, add(b(n-j)*add(d*
max(1, 2^(d-1)-1), d=numtheory[divisors](j)), j=1..n)/n)
end:
a:= n-> b(n)-max(1, 2^(n-1)-1):
seq(a(n), n=1..35); # Alois P. Heinz, Jan 05 2022
MATHEMATICA
b[n_] := b[n] = If[n == 0, 1, Sum[b[n - j]*Sum[d*
Max[1, 2^(d-1) - 1], {d, Divisors[j]}], {j, 1, n}]/n];
a[n_] := b[n] - Max[1, 2^(n-1)-1];
Table[a[n], {n, 1, 35}] (* Jean-François Alcover, Mar 11 2022, Alois P. Heinz *)
CROSSREFS
Sequence in context: A074413 A263897 A209629 * A055544 A126285 A026163
KEYWORD
nonn
AUTHOR
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 May 3 12:13 EDT 2024. Contains 372209 sequences. (Running on oeis4.)