There is a is_front_page function which would work if the blog posts were on the homepage. But my case it is on another page.
There is no “is this page I’m viewing the posts landing page”.
<?php if(is_page()): ?>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(1) ):?><?php endif; ?>
<?php elseif (is_single() || is_this_the_blog_landing_page): ?>
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) :?><?php endif; ?>
<?php endif;?>