Write a function that accepts a single parameter, an Integer that creates an octothorpe (#
) pyramid. The parameter determines the width (in octothorpes) of the bottom tier of the pyramid.
pyramid(7)
#
###
#####
#######
pyramid(6)
##
####
######