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!)
A299119 Positive solution to 2^(n-1) = (1/n) * Sum_{d|n} a(d) * a(n/d). 5
1, 2, 6, 14, 40, 84, 224, 484, 1134, 2480, 5632, 12036, 26624, 56896, 122640, 261078, 557056, 1176876, 2490368, 5237360, 11008704, 23057408, 48234496, 100635144, 209714400, 436154368, 905962860, 1878931264, 3892314112, 8052800160, 16642998272, 34359209436 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For prime p, a(p) = 2^(p-2)*p. - Jon E. Schoenfield, Feb 03 2018
LINKS
MAPLE
with(numtheory):
a:= proc(n) option remember; `if`(n=1, 1, n*2^(n-2)-
add(a(d)*a(n/d), d=divisors(n) minus {1, n})/2)
end:
seq(a(n), n=1..35); # Alois P. Heinz, Mar 07 2018
MATHEMATICA
nn=50;
sys=Table[2^(n-1)*n==Sum[a[d]*a[n/d], {d, Divisors[n]}], {n, nn}];
Array[a, nn]/.Solve[sys, Array[a, nn]][[2]]
CROSSREFS
Sequence in context: A263735 A263731 A293742 * A348010 A271895 A151538
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 03 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 19 04:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)