A082252 Concatenation of (3n-2), (3n-1) and 3n divided by 3.
41, 152, 263, 33704, 43805, 53906, 64007, 74108, 84209, 94310, 104411, 114512, 124613, 134714, 144815, 154916, 165017, 175118, 185219, 195320, 205421, 215522, 225623, 235724, 245825, 255926, 266027, 276128, 286229, 296330, 306431, 316532, 326633, 33367034
Offset: 1
Examples
a(5) = 131415/3 = 43805.
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..1000
Programs
-
PARI
a(n)={fromdigits(concat([digits(3*n-2), digits(3*n-1), digits(3*n)]))/3} \\ Andrew Howroyd, Nov 09 2019
Extensions
Terms a(12) and beyond from Andrew Howroyd, Nov 09 2019
Comments