login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A065998 Concatenate n and number of divisors of n. 2
11, 22, 32, 43, 52, 64, 72, 84, 93, 104, 112, 126, 132, 144, 154, 165, 172, 186, 192, 206, 214, 224, 232, 248, 253, 264, 274, 286, 292, 308, 312, 326, 334, 344, 354, 369, 372, 384, 394, 408, 412, 428, 432, 446, 456, 464, 472, 4810, 493, 506, 514, 526, 532 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
cnd[n_]:=Module[{ds=DivisorSigma[0, n]}, n*10^IntegerLength[ds]+ds]; Array[ cnd, 60] (* Harvey P. Dale, Aug 22 2019 *)
PROG
(PARI) digitsIn(x)= { local(d); if (x==0, return(1)); d=1 + log(x)\log(10); if (10^d == x, d++, if (10^(d-1) > x, d--)); return(d) }
Concat(a, b)= { return(a*10^digitsIn(b) + b) }
{ for (n=1, 1000, a=Concat(n, numdiv(n)); write("b065998.txt", n, " ", a) ) } \\ Harry J. Smith, Nov 06 2009
(PARI) a(n) = fromdigits(concat(digits(n), digits(numdiv(n)))); \\ Michel Marcus, Apr 02 2017
CROSSREFS
Cf. A000005.
Sequence in context: A054728 A178897 A013576 * A364275 A351877 A073729
KEYWORD
nonn,base
AUTHOR
Jeff Burch, Feb 28 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 29 15:16 EDT 2024. Contains 372114 sequences. (Running on oeis4.)