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!)
A335961 Alternating factorions: Numbers m such that m = S_af(m) = af(d_1)+af(d_2)+...+af(d_k) where d_1 d_2 ... d_n is the decimal expansion of m and af(m) = m!-(m-1)!+(m-2)!+...1! (alternating factorial) with af(0) = 0 (base 10). 0
0, 1, 620, 621, 643 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Largest k such that S_af(k) > k is 1599999. That's why there are only five numbers such that S_af(m) = m. Proved by computer calculations.
If m has eight or more digits then S_af(m) < m. Proved directly.
LINKS
EXAMPLE
For m = 620, S_af(620) = af(6)+af(2)+af(0) = 619+1+0 = 620.
MATHEMATICA
af[0] = 0; af[n_] := af[n] = n! - af[n - 1]; Select[Range[1000], Total[af /@ IntegerDigits[#]] == # &] (* Amiram Eldar, Jul 02 2020 *)
PROG
(C++)
#include <iostream>
using namespace std;
int S_af(int n) { const int af[]={0, 1, 1, 5, 19, 101, 619, 4421, 35899, 326981}; int s=0; while (n) {s+=af[n%10]; n/=10; } return s; }
int main() {int n=0; while(n<=1599999){if(n==S_af(n)){cout<<n<<endl; }n++; }}
CROSSREFS
Cf. A005165 (alternating factorial), A014080 (factorions).
Sequence in context: A200812 A133207 A182351 * A202239 A010031 A252527
KEYWORD
nonn,base,fini,full
AUTHOR
Andrzej Kukla, Jul 01 2020
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 16 04:02 EDT 2024. Contains 371696 sequences. (Running on oeis4.)