[go: up one dir, main page]

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!)
Revision History for A105210 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A105210 a(1) = 393; for n > 1, a(n) = a(n-1) + 1 + sum of distinct prime factors of a(n-1) that are < a(n-1). edit
(history; published version)
#20 by Harvey P. Dale at Sat Mar 02 11:08:30 EST 2019
STATUS

editing

approved

#19 by Harvey P. Dale at Sat Mar 02 11:08:25 EST 2019
NAME

a(1) = 393; for n > 1, a(n) = a(n-1) + 1 + sum of distinct prime factors of a(n-1) that are < a(n-1).). edit

MATHEMATICA

nxt[n_]:=n+1+Total[Select[FactorInteger[n][[All, 1]], #<n&]]; NestList[ nxt, 393, 50] (* Harvey P. Dale, Mar 02 2019 *)

STATUS

approved

editing

#18 by Joerg Arndt at Fri Aug 18 03:17:13 EDT 2017
STATUS

proposed

approved

#17 by Michel Marcus at Fri Aug 18 00:31:05 EDT 2017
STATUS

editing

proposed

#16 by Michel Marcus at Fri Aug 18 00:31:01 EDT 2017
REFERENCES

Problem 886, Math. Mag., 48 (1975), 57-58.

LINKS

Doug Engel, <a href="http://www.jstor.org/stable/2689298">Problem 886</a>, Math. Mag., 48 (1975), 57-58.

STATUS

proposed

editing

#15 by Jon E. Schoenfield at Thu Aug 17 23:21:04 EDT 2017
STATUS

editing

proposed

#14 by Jon E. Schoenfield at Thu Aug 17 23:21:02 EDT 2017
NAME

a(1) = 393; for n> > 1, a(n) = a(n-1) + 1 + sum of distinct prime factors of a(n-1) that are < a(n-1).

LINKS

T. D. Noe, <a href="/A105210/b105210.txt">Table of n, a(n) for n= = 1..2000</a>

MAPLE

with(numtheory): p:=proc(n) local nn, ct, s: if isprime(n)=true then s:=0 else nn:=convert(factorset(n), list): ct:=nops(nn): s:=sum(nn[j], j=1..ct):fi: end: a[1]:=393: for n from 2 to 50 do a[n]:=1+a[n-1]+p(a[n-1]) od:seq(a[n], n=1..50); # _Emeric Deutsch__, Apr 14 2005

CROSSREFS

Cf. A027748, A003508, A027748, A105211, A105212, A105213.

STATUS

approved

editing

#13 by Jon E. Schoenfield at Thu Jul 30 23:14:48 EDT 2015
STATUS

editing

approved

#12 by Jon E. Schoenfield at Thu Jul 30 23:14:40 EDT 2015
EXAMPLE

a(2)=528 because a(1)=393, the distinct prime factors of a(1) are 3 and 131; finally, 1+ + 393+ + 3+ + 131= = 528.

MAPLE

with(numtheory): p:=proc(n) local nn, ct, s: if isprime(n)=true then s:=0 else nn:=convert(factorset(n), list): ct:=nops(nn): s:=sum(nn[j], j=1..ct):fi: end: a[1]:=393: for n from 2 to 50 do a[n]:=1+a[n-1]+p(a[n-1]) od:seq(a[n], n=1..50); (); # _Emeric Deutsch)_

MATHEMATICA

a[1] = 393; a[n_] := a[n] = a[n - 1] + 1 + Plus @@ Select[ Flatten[ Table[ #[[1]], {1}] & /@ FactorInteger[a[n - 1]]], # < a[n - 1] &]; Table[a[n], {n, 44}] (from _}] (* _Robert G. Wilson v_, Apr 14 2005) *)

a[1] = 412; a[n_] := a[n] = a[n - 1] + 1 + Plus @@ Select[ Flatten[ Table[ #[[1]], {1}] & /@ FactorInteger[a[n - 1]]], # < a[n - 1] &]; Table[a[n], {n, 43}] (from _}] (* _Robert G. Wilson v_, Apr 14 2005) *)

a[1] = 668; a[n_] := a[n] = a[n - 1] + 1 + Plus @@ Select[ Flatten[ Table[ #[[1]], {1}] & /@ FactorInteger[a[n - 1]]], # < a[n - 1] &]; Table[a[n], {n, 40}] (from _}] (* _Robert G. Wilson v_, Apr 14 2005) *)

a[1] = 932; a[n_] := a[n] = a[n - 1] + 1 + Plus @@ Select[ Flatten[ Table[ #[[1]], {1}] & /@ FactorInteger[a[n - 1]]], # < a[n - 1] &]; Table[a[n], {n, 40}] (from _}] (* _Robert G. Wilson v_, Apr 14 2005) *)

AUTHOR

R. K. Guy, Apr 14, 2005

STATUS

approved

editing

#11 by Reinhard Zumkeller at Thu Jan 15 14:34:08 EST 2015
STATUS

editing

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 August 29 17:19 EDT 2024. Contains 375518 sequences. (Running on oeis4.)