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!)
A329271 Numbers k such that k multiplied by the product of its divisors contains k as a substring. 1
1, 5, 6, 10, 16, 24, 25, 30, 36, 40, 50, 51, 60, 70, 76, 90, 92, 100, 125, 176, 195, 240, 249, 250, 363, 375, 376, 430, 490, 500, 501, 510, 546, 556, 560, 568, 570, 600, 620, 624, 625, 648, 680, 730, 749, 750, 760, 810, 875, 909, 930, 972, 975, 976, 990, 999, 1000, 1001, 1010, 1636, 1680, 1930, 2354, 2400, 2490, 2500, 2510, 2512, 2943, 3000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Inspired by A328095. To avoid all primes being in the sequence the divisors of k includes k itself.
Contains 10^k, 5*10^k and 6*10^k for all k, 3*10^k, 4*10^k, 7*10^k and 9*10^k for all odd k. - Robert Israel, Nov 11 2019
LINKS
Scott R. Shannon, Table of n, a(n) for n = 1..1000. Note when searching for these numbers one needs to use arbitrary precision packages; the product for 24570000 has 1486 digits.
EXAMPLE
16 is in the sequence as the divisors of 16 are 1,2,4,8,16, and 16*(1*2*4*8*16) = 16*1024 = 16384, and '16384' contains '16' as a substring.
30 is in the sequence as the divisors of 30 are 1,2,3,5,6,10,15,30, and 30*(1*2*3*5*6*10*15*30) = 30*810000 = 24300000, and '24300000' contains '30' as a substring.
MATHEMATICA
f[n_] := n^(1+DivisorSigma[0, n]/2); aQ[n_] := SequenceCount[IntegerDigits[f[n]], IntegerDigits[n]] > 0; Select[Range[3000], aQ] (* Amiram Eldar, Nov 10 2019 *)
PROG
(Magma) a:=[]; for k in [1..3000] do t:=IntegerToString(k*(&*Divisors(k))); s:=IntegerToString(k); if s in t then Append(~a, k); end if; end for; a; // Marius A. Burtea, Nov 10 2019
CROSSREFS
The sequence of primes contained in their squares is A115738.
Sequence in context: A287665 A015820 A096728 * A011985 A318907 A231503
KEYWORD
nonn,base
AUTHOR
Scott R. Shannon, Nov 10 2019
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 19 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)