Add the “∞” character at the end of the post that links to the post permalink.
//run before wpautop
add_filter( 'the_content', 'my_aside_to_infinity_and_beyond', 9 );
function my_aside_to_infinity_and_beyond( $content ) {
if ( has_post_format( 'aside' ) && !is_singular() )
$content .= ' <a href="' . get_permalink() . '">∞</a>';
return $content;
}