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!)
A069535 Treated as strings, n and its reversal are substrings of n!. 7

%I #10 Apr 28 2021 20:43:43

%S 1,2,4,20,30,33,42,44,45,51,60,67,72,75,78,79,80,81,82,84,88,91,94,95,

%T 97,98,99,116,140,141,166,170,180,188,198,200,202,210,222,228,231,238,

%U 252,261,264,265,272,285,286,292,293,297,311,313,315,317,321

%N Treated as strings, n and its reversal are substrings of n!.

%C This is the sequence of "fixated points" (cf. A068588) of f(n) = n!.

%H Robert Israel, <a href="/A069535/b069535.txt">Table of n, a(n) for n = 1..10000</a>

%H Pe, J. <a href="http://numeratus.net/enlightened/fixated.html">Fixated Points of Arithmetical Functions</a>

%e 42! = 1405006117752879898543142606244511569936384000000000, which contains both 42 and 24 as substrings. Hence 42 is a term of the sequence.

%p filter:= proc(n) local m,L,R,LN; uses StringTools;

%p L:= sprintf("%d",n);

%p m:= padic:-ordp(n,10);

%p R:= Reverse(L)[m+1..-1];

%p LN:= sprintf("%d",n!);

%p Search(L,LN) > 0 and Search(R,LN) > 0

%p end proc:

%p select(filter, [$1..1000]); # _Robert Israel_, Apr 28 2021

%t r = {}; Do[m = n!; s = ToString[m]; If[ StringPosition[s, ToString[n]] != {} && StringPosition[s, ToString[ FromDigits[ Reverse[ IntegerDigits[n]]]]] != {}, r = Append[r, n]], {n, 1, 321}]; r

%Y Cf. A068588.

%K base,nonn

%O 1,2

%A _Joseph L. Pe_, Apr 16 2002

%E Edited and extended by _Robert G. Wilson v_, Apr 19 2002

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 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)