An alternative is to use the ccfonts package, which is still being updated. The concmath package is from last century.
\usepackage[T1]{fontenc} \usepackage{amssymb} \usepackage{ccfonts}
loads either the AMS or Concrete version of all the standard math alphabets.
Otherwise, you can pick a blackboard font you like from mathalpha and load that after ccfonts or concmath.
Be aware, either of these will give you pixelated METAFONT math fonts, unless you pay money for the Micropress Concrete Math font in Type 1 format. You don’t need to do that, though: either you’re publishing in a journal that licenses the font, or you’re free to use a modern TeX engine that supports OpenType.
In LuaLaTeX or XeLaTeX, you might try pairing Concrete with the math symbols from the slab serif font GFS Neohellenic:
\documentclass{article} \usepackage[math-style=upright]{unicode-math} \usepackage[paperwidth=10cm]{geometry} % Format a MWE for TeX.SX \setmainfont{CMU Concrete}[ Ligatures=Common, UprightFont=cmunorm.otf, BoldFont=cmunobx.otf, ItalicFont=cmunoti.otf, BoldItalicFont=cmunobi.otf ] \setmathfont{GFS Neohellenic Math}[Scale=MatchLowercase] \setmathfont{cmunoti.otf}[range=it] \setmathfont{cmunorm.otf}[range=up] \begin{document} \noindent% Let \( (x,y) \in \mathbb{R} \times \mathbb{R} \) such that \( \sqrt{x^2 + y^2} \leq \varepsilon \). \end{document}

Or load unicode-math without math-style=upright to get italic math symbols more like the legacy packages. Changing the option to math-style=ISO will slant your upright Greek letters, too.
\documentclass{article} \usepackage[math-style=ISO]{unicode-math} \usepackage[paperwidth=10cm]{geometry} % Format a MWE for TeX.SX \setmainfont{CMU Concrete}[ Ligatures=Common, UprightFont=cmunorm.otf, BoldFont=cmunobx.otf, ItalicFont=cmunoti.otf, BoldItalicFont=cmunobi.otf ] \setmathfont{GFS Neohellenic Math}[Scale=MatchLowercase] \setmathfont{cmunoti.otf}[range=it] \setmathfont{cmunorm.otf}[range=up] \begin{document} \noindent% Let \( (x,y) \in \mathbb{R} \times \mathbb{R} \) such that \( \sqrt{x^2 + y^2} \leq \varepsilon \). \end{document}

In either case, you can swap in a different blackboard bold alphabet with a command like
\setmathfont{STIX Two Math}[range=bb, Scale=MatchUppercase]
\mathbb, or a heavier math font, such as\mathbfor\boldmath?\mathbbas I said at the beginning of my post. I don't want to use Euler, I really like the style of concrete math font.