Given a binary tree where each node contains an integer value, implement a function that processes the tree level by level. For every level, pair the nodes from the outermost ends inward:
Your function should return a list where each element represents a level in the tree and is itself a list of the computed sums for that level.
For example, consider the following binary tree:
10
/ \
2 20
/ \ / \
4 8 16 25
Implement your solution in a programming language of your choice. You may assume the binary tree nodes are provided in a standard format (for example, a class with attributes for the node's value, left child, and right child).